aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclPrinter.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-05-31 07:13:39 +0000
committerDouglas Gregor <dgregor@apple.com>2009-05-31 07:13:39 +0000
commitf757ae711513e5b2efa25fde1562315c0906bd68 (patch)
tree0fd1423ad15f2d0a4dd6badc475a5518198e7b9d /lib/AST/DeclPrinter.cpp
parent813a2bb6f320611aaa447fbeada826bacecb93b5 (diff)
Add a little FIXME for C++ class printing
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclPrinter.cpp')
-rw-r--r--lib/AST/DeclPrinter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AST/DeclPrinter.cpp b/lib/AST/DeclPrinter.cpp
index 1b627ef797..f29da8b9f4 100644
--- a/lib/AST/DeclPrinter.cpp
+++ b/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() << "}";