diff options
author | Greg Clayton <gclayton@apple.com> | 2013-01-29 20:03:58 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-01-29 20:03:58 +0000 |
commit | b25406cd9df6c7015cbea348bc1fda06ffa40363 (patch) | |
tree | 4d6410b73e12debce7bca7328f5da1057ae6517e /lldb/source/Expression/ExpressionSourceCode.cpp | |
parent | 43ecac5a2c398674955382311c6a321282ba4b3e (diff) | |
download | llvm-b25406cd9df6c7015cbea348bc1fda06ffa40363.zip llvm-b25406cd9df6c7015cbea348bc1fda06ffa40363.tar.gz llvm-b25406cd9df6c7015cbea348bc1fda06ffa40363.tar.bz2 |
<rdar://problem/13107904>
wchar_t causes problem with certain compilers. Removing it for now.
llvm-svn: 173823
Diffstat (limited to 'lldb/source/Expression/ExpressionSourceCode.cpp')
-rw-r--r-- | lldb/source/Expression/ExpressionSourceCode.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Expression/ExpressionSourceCode.cpp b/lldb/source/Expression/ExpressionSourceCode.cpp index ec1faf7..4670c6a 100644 --- a/lldb/source/Expression/ExpressionSourceCode.cpp +++ b/lldb/source/Expression/ExpressionSourceCode.cpp @@ -37,7 +37,6 @@ 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__ wchar_t;\n" "typedef unsigned short unichar;\n"; |