From: Danny Al-Gaaf Date: Mon, 11 Feb 2013 15:47:58 +0000 (+0100) Subject: Mutex.cc: fix implicitly-defined namespace 'std' X-Git-Tag: v0.58~109^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F47%2Fhead;p=ceph.git 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 --- diff --git a/src/common/Mutex.cc b/src/common/Mutex.cc index 235086470a70..f1e9a550c81b 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"