From: Daniel Malea Date: Thu, 6 Dec 2012 00:10:37 +0000 (+0000) Subject: Move isprint8() into lldb_private as per post-commit review from Stefanus X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad75f07274fb4e0e19ad415a68a7b661e1b88f81;p=platform%2Fupstream%2Fllvm.git Move isprint8() into lldb_private as per post-commit review from Stefanus llvm-svn: 169454 --- diff --git a/lldb/include/lldb/Interpreter/Options.h b/lldb/include/lldb/Interpreter/Options.h index 2a9be0b..7b3e3aa 100644 --- a/lldb/include/lldb/Interpreter/Options.h +++ b/lldb/include/lldb/Interpreter/Options.h @@ -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"