Move isprint8() into lldb_private as per post-commit review from Stefanus
authorDaniel Malea <daniel.malea@intel.com>
Thu, 6 Dec 2012 00:10:37 +0000 (00:10 +0000)
committerDaniel Malea <daniel.malea@intel.com>
Thu, 6 Dec 2012 00:10:37 +0000 (00:10 +0000)
llvm-svn: 169454

lldb/include/lldb/Interpreter/Options.h

index 2a9be0b..7b3e3aa 100644 (file)
@@ -23,7 +23,7 @@
 #include "lldb/lldb-defines.h"
 #include "lldb/Interpreter/Args.h"
 
-namespace {
+namespace lldb_private {
 
   static inline bool
   isprint8 (int ch)
@@ -33,9 +33,6 @@ namespace {
       return isprint(ch);
   }
 
-}
-
-namespace lldb_private {
 
 //----------------------------------------------------------------------
 /// @class Options Options.h "lldb/Interpreter/Options.h"