From 62b60a44ab79ef9dc78049a340cfefaf34a81639 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Thu, 24 Feb 2011 14:46:29 +0100 Subject: [PATCH] fix using namespace std before defined --- tools/logfile-splitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/logfile-splitter.cpp b/tools/logfile-splitter.cpp index 7cafacdf..638bbe8f 100644 --- a/tools/logfile-splitter.cpp +++ b/tools/logfile-splitter.cpp @@ -1,6 +1,5 @@ // quick hack to separate one call per callid from a logfile -using namespace std; #include #include #include @@ -9,6 +8,7 @@ using namespace std; #include #include #include +using namespace std; std::vector explode(const string& s, const string& delim, const bool keep_empty = false);