diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-05-31 07:13:39 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-05-31 07:13:39 +0000 |
commit | 7a1a7cb09de7de41a6b6fe6a7573085701b87ba4 (patch) | |
tree | d6d0c2f9febea38bdd595c586d926b9bf6af4c54 /clang/lib/AST/DeclPrinter.cpp | |
parent | 0a8fe66a6c1778ac539a69230308f462b0aa14a0 (diff) | |
download | bcm5719-llvm-7a1a7cb09de7de41a6b6fe6a7573085701b87ba4.tar.gz bcm5719-llvm-7a1a7cb09de7de41a6b6fe6a7573085701b87ba4.zip |
Add a little FIXME for C++ class printing
llvm-svn: 72660
Diffstat (limited to 'clang/lib/AST/DeclPrinter.cpp')
-rw-r--r-- | clang/lib/AST/DeclPrinter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/AST/DeclPrinter.cpp b/clang/lib/AST/DeclPrinter.cpp index 1b627ef7974..f29da8b9f4c 100644 --- a/clang/lib/AST/DeclPrinter.cpp +++ b/clang/lib/AST/DeclPrinter.cpp @@ -481,6 +481,7 @@ void DeclPrinter::VisitCXXRecordDecl(CXXRecordDecl *D) { } // Print the class definition + // FIXME: Doesn't print access specifiers, e.g., "public:" Out << " {\n"; VisitDeclContext(D); Indent() << "}"; |