diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-09-27 22:38:19 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-09-27 22:38:19 +0000 |
commit | c0b07286cf9d303958d2d21c0548403086c87e36 (patch) | |
tree | f7620d339f3b00c699e65fd82972cfde71c93b13 /clang/lib/Sema/SemaExceptionSpec.cpp | |
parent | ac8dbf0fc70ca56fa6c7bda4e9b76323102ba65a (diff) | |
download | bcm5719-llvm-c0b07286cf9d303958d2d21c0548403086c87e36.tar.gz bcm5719-llvm-c0b07286cf9d303958d2d21c0548403086c87e36.zip |
When 'bool' is not a built-in type but is defined as a macro, print
'bool' rather than '_Bool' within types, to make things a bit more
readable. Fixes <rdar://problem/10063263>.
llvm-svn: 140650
Diffstat (limited to 'clang/lib/Sema/SemaExceptionSpec.cpp')
-rw-r--r-- | clang/lib/Sema/SemaExceptionSpec.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaExceptionSpec.cpp b/clang/lib/Sema/SemaExceptionSpec.cpp index aba7b349773..95fdd031fab 100644 --- a/clang/lib/Sema/SemaExceptionSpec.cpp +++ b/clang/lib/Sema/SemaExceptionSpec.cpp @@ -205,7 +205,7 @@ bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { else OS << ", "; - OS << E->getAsString(Context.PrintingPolicy); + OS << E->getAsString(Context.getPrintingPolicy()); } OS << ")"; break; @@ -218,7 +218,7 @@ bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) { case EST_ComputedNoexcept: OS << "noexcept("; OldProto->getNoexceptExpr()->printPretty(OS, Context, 0, - Context.PrintingPolicy); + Context.getPrintingPolicy()); OS << ")"; break; |