aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaTemplate.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-09-27 23:30:47 +0000
committerDouglas Gregor <dgregor@apple.com>2011-09-27 23:30:47 +0000
commit8987b2385d9ba63ada66e1344ace79b04d5cb5c3 (patch)
tree66bd71ca88b1a6462b50f7bf3694eed9fc620677 /lib/Sema/SemaTemplate.cpp
parented73b1046d1f30d64b47baaaeaaeffa6ef0dde91 (diff)
Only print _Bool as 'bool' when 'bool' is defined as an object-like
macro whose only replacement token is '_Bool'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaTemplate.cpp')
-rw-r--r--lib/Sema/SemaTemplate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp
index 0f2f6329aa..06f783d58c 100644
--- a/lib/Sema/SemaTemplate.cpp
+++ b/lib/Sema/SemaTemplate.cpp
@@ -6729,7 +6729,7 @@ Sema::getTemplateArgumentBindingsText(const TemplateParameterList *Params,
}
Out << " = ";
- Args[I].print(Context.getPrintingPolicy(), Out);
+ Args[I].print(getPrintingPolicy(), Out);
}
Out << ']';