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
diff --git a/lib/AST/DeclPrinter.cpp b/lib/AST/DeclPrinter.cpp
index 1b627ef..f29da8b 100644
--- a/lib/AST/DeclPrinter.cpp
+++ b/lib/AST/DeclPrinter.cpp
@@ -481,6 +481,7 @@
     }
 
     // Print the class definition
+    // FIXME: Doesn't print access specifiers, e.g., "public:"
     Out << " {\n";
     VisitDeclContext(D);
     Indent() << "}";