From: Jay Foad Date: Sat, 23 Apr 2011 09:06:00 +0000 (+0000) Subject: Like the coding standards say, do not use "using namespace std". X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a0f5092703a9850b4be2eaa0861bab789befedd9;p=oota-llvm.git Like the coding standards say, do not use "using namespace std". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130054 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/ErrorHandling.cpp b/lib/Support/ErrorHandling.cpp index 3579546d757..e6cc57db824 100644 --- a/lib/Support/ErrorHandling.cpp +++ b/lib/Support/ErrorHandling.cpp @@ -32,7 +32,6 @@ #endif using namespace llvm; -using namespace std; static fatal_error_handler_t ErrorHandler = 0; static void *ErrorHandlerUserData = 0;