Skip to content

Commit

Permalink
use namespace GFLAGS_NAMESPACE instead namespace gflags
Browse files Browse the repository at this point in the history
only signalhandler_unittest.cc uses "using namespace gflags".
others use "using namespace GFLAGS_NAMESPACE", so
signalhandler_unittest.cc does the same way.

fixes #62
  • Loading branch information
ukai committed Dec 17, 2015
1 parent a63f466 commit 4d391fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/signalhandler_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

#ifdef HAVE_LIB_GFLAGS
#include <gflags/gflags.h>
using namespace gflags;
using namespace GFLAGS_NAMESPACE;
#endif

using namespace GOOGLE_NAMESPACE;
Expand Down

0 comments on commit 4d391fe

Please sign in to comment.