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
This commit is contained in:
Douglas Gregor 2009-05-31 07:13:39 +00:00
Родитель 813a2bb6f3
Коммит f757ae7115
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -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() << "}";