Update FIXME as requested in code review.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@341100 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Richard Smith 2018-08-30 19:19:15 +00:00
parent d224345530
commit 1122a64e3e
1 changed files with 2 additions and 1 deletions

View File

@ -3878,7 +3878,8 @@ static void WriteDocumentation(RecordKeeper &Records,
OS << " \""; OS << " \"";
for (size_t Kind = 0; Kind != NumSpellingKinds; ++Kind) { for (size_t Kind = 0; Kind != NumSpellingKinds; ++Kind) {
SpellingKind K = (SpellingKind)Kind; SpellingKind K = (SpellingKind)Kind;
// FIXME: Why are Microsoft spellings not listed? // TODO: List Microsoft (IDL-style attribute) spellings once we fully
// support them.
if (K == SpellingKind::Microsoft) if (K == SpellingKind::Microsoft)
continue; continue;