From ebe70d7a40f911d6c344c1cfea8298e9839788b4 Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Mon, 11 Feb 2013 16:47:58 +0100 Subject: [PATCH] Mutex.cc: fix implicitly-defined namespace 'std' Fix warning from clang(++): common/Mutex.cc:14:17: warning: using directive refers to implicitly-defined namespace 'std' using namespace std; ^ Signed-off-by: Danny Al-Gaaf --- src/common/Mutex.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/Mutex.cc b/src/common/Mutex.cc index 235086470a70d..f1e9a550c81b9 100644 --- a/src/common/Mutex.cc +++ b/src/common/Mutex.cc @@ -11,7 +11,6 @@ * Foundation. See file COPYING. * */ -using namespace std; #include #include "common/Mutex.h" -- 2.39.5