summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/NestedNameSpecifier.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-30 01:26:17 +0000
committerChris Lattner <sabre@nondot.org>2009-06-30 01:26:17 +0000
commitc61089a6c231ecf07631d767d2d1db0ec0816262 (patch)
tree28387b2d56261ad228979fd386635c9d12f4eae1 /clang/lib/AST/NestedNameSpecifier.cpp
parente8eca73cddbf6a6b4adb07b7eef403226b8a6798 (diff)
downloadbcm5719-llvm-c61089a6c231ecf07631d767d2d1db0ec0816262.tar.gz
bcm5719-llvm-c61089a6c231ecf07631d767d2d1db0ec0816262.zip
Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions.
This is simple enough, but then I thought it would be nice to make PrintingPolicy get a LangOptions so that various things can key off "bool" and "C++" independently. This spiraled out of control. There are many fixme's, but I think things are slightly better than they were before. One thing that can be improved: CFG should probably have an ASTContext pointer in it, which would simplify its clients. llvm-svn: 74493
Diffstat (limited to 'clang/lib/AST/NestedNameSpecifier.cpp')
-rw-r--r--clang/lib/AST/NestedNameSpecifier.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/AST/NestedNameSpecifier.cpp b/clang/lib/AST/NestedNameSpecifier.cpp
index 09522a20863..90ec4d33fdf 100644
--- a/clang/lib/AST/NestedNameSpecifier.cpp
+++ b/clang/lib/AST/NestedNameSpecifier.cpp
@@ -153,8 +153,6 @@ void NestedNameSpecifier::Destroy(ASTContext &Context) {
Context.Deallocate((void *)this);
}
-void NestedNameSpecifier::dump() {
- PrintingPolicy Policy;
- Policy.CPlusPlus = true;
- print(llvm::errs(), Policy);
+void NestedNameSpecifier::dump(const LangOptions &LO) {
+ print(llvm::errs(), PrintingPolicy(LO));
}
OpenPOWER on IntegriCloud