summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaTemplate.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-09-27 22:38:19 +0000
committerDouglas Gregor <dgregor@apple.com>2011-09-27 22:38:19 +0000
commitc0b07286cf9d303958d2d21c0548403086c87e36 (patch)
treef7620d339f3b00c699e65fd82972cfde71c93b13 /clang/lib/Sema/SemaTemplate.cpp
parentac8dbf0fc70ca56fa6c7bda4e9b76323102ba65a (diff)
downloadbcm5719-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/SemaTemplate.cpp')
-rw-r--r--clang/lib/Sema/SemaTemplate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaTemplate.cpp b/clang/lib/Sema/SemaTemplate.cpp
index d283b6d2344..0f2f6329aab 100644
--- a/clang/lib/Sema/SemaTemplate.cpp
+++ b/clang/lib/Sema/SemaTemplate.cpp
@@ -6729,7 +6729,7 @@ Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
}
Out << " = ";
- Args[I].print(Context.PrintingPolicy, Out);
+ Args[I].print(Context.getPrintingPolicy(), Out);
}
Out << ']';
OpenPOWER on IntegriCloud