[Lldb-commits] [lldb] r173731 - Fixed a "wchar_t" typo.

Greg Clayton gclayton at apple.com
Mon Jan 28 16:29:18 PST 2013


Author: gclayton
Date: Mon Jan 28 18:29:18 2013
New Revision: 173731

URL: http://llvm.org/viewvc/llvm-project?rev=173731&view=rev
Log:
Fixed a "wchar_t" typo.


Modified:
    lldb/trunk/source/Expression/ExpressionSourceCode.cpp

Modified: lldb/trunk/source/Expression/ExpressionSourceCode.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/ExpressionSourceCode.cpp?rev=173731&r1=173730&r2=173731&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ExpressionSourceCode.cpp (original)
+++ lldb/trunk/source/Expression/ExpressionSourceCode.cpp Mon Jan 28 18:29:18 2013
@@ -37,8 +37,8 @@ static const char *global_defines =
 "typedef unsigned __INTPTR_TYPE__ uintptr_t;\n"
 "typedef __SIZE_TYPE__ size_t; \n"
 "typedef __PTRDIFF_TYPE__ ptrdiff_t;\n"
-"typedef __WCHAR_TYPE__ whar_t; \n"
-"typedef unsigned short unichar;   \n";
+"typedef __WCHAR_TYPE__ wchar_t;\n"
+"typedef unsigned short unichar;\n";
 
 
 bool ExpressionSourceCode::GetText (std::string &text, lldb::LanguageType wrapping_language, bool const_object, bool static_method) const





More information about the lldb-commits mailing list