[Lldb-commits] [lldb] r169454 - /lldb/trunk/include/lldb/Interpreter/Options.h
Daniel Malea
daniel.malea at intel.com
Wed Dec 5 16:10:37 PST 2012
Author: dmalea
Date: Wed Dec 5 18:10:37 2012
New Revision: 169454
URL: http://llvm.org/viewvc/llvm-project?rev=169454&view=rev
Log:
Move isprint8() into lldb_private as per post-commit review from Stefanus
Modified:
lldb/trunk/include/lldb/Interpreter/Options.h
Modified: lldb/trunk/include/lldb/Interpreter/Options.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Interpreter/Options.h?rev=169454&r1=169453&r2=169454&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Interpreter/Options.h (original)
+++ lldb/trunk/include/lldb/Interpreter/Options.h Wed Dec 5 18:10:37 2012
@@ -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 @@
return isprint(ch);
}
-}
-
-namespace lldb_private {
//----------------------------------------------------------------------
/// @class Options Options.h "lldb/Interpreter/Options.h"
More information about the lldb-commits
mailing list