Fixed a "wchar_t" typo.
authorGreg Clayton <gclayton@apple.com>
Tue, 29 Jan 2013 00:29:18 +0000 (00:29 +0000)
committerGreg Clayton <gclayton@apple.com>
Tue, 29 Jan 2013 00:29:18 +0000 (00:29 +0000)
llvm-svn: 173731

lldb/source/Expression/ExpressionSourceCode.cpp

index 151076f..ec1faf7 100644 (file)
@@ -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