Fixing build bot breakage due to using a local type as a template argument.

llvm-svn: 201516
This commit is contained in:
Aaron Ballman 2014-02-17 15:36:08 +00:00
parent 97dba048a3
commit a66b574b28
1 changed files with 7 additions and 7 deletions

View File

@ -2677,6 +2677,13 @@ static void WriteCategoryHeader(DocumentationData::DocCategory Category,
OS << "\n";
}
enum SpellingKind {
GNU = 1 << 0,
CXX11 = 1 << 1,
Declspec = 1 << 2,
Keyword = 1 << 3
};
static void WriteDocumentation(const DocumentationData &Doc,
raw_ostream &OS) {
// FIXME: there is no way to have a per-spelling category for the attribute
@ -2715,13 +2722,6 @@ static void WriteDocumentation(const DocumentationData &Doc,
// semantic characters are still acceptable.
std::vector<std::string> Names;
enum SpellingKind {
GNU = 1 << 0,
CXX11 = 1 << 1,
Declspec = 1 << 2,
Keyword = 1 << 3
};
unsigned SupportedSpellings = 0;
for (std::vector<FlattenedSpelling>::const_iterator I = Spellings.begin(),
E = Spellings.end(); I != E; ++I) {