]> granicus.if.org Git - clang/commitdiff
Add a little FIXME for C++ class printing
authorDouglas Gregor <dgregor@apple.com>
Sun, 31 May 2009 07:13:39 +0000 (07:13 +0000)
committerDouglas Gregor <dgregor@apple.com>
Sun, 31 May 2009 07:13:39 +0000 (07:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72660 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/DeclPrinter.cpp

index 1b627ef797442eb42917f38101fab471d9a04cab..f29da8b9f4c858e021e2ce98455b52d34bdce155 100644 (file)
@@ -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() << "}";