forked from OSchip/llvm-project
Appease MSVC 2013, which was complaining about a syntax error with an unexpected close curly brace. For some reason, the range-based for loop requires curly braces to compile in MSVC.
llvm-svn: 241578
This commit is contained in:
parent
5bcb832307
commit
d6678c8bb7
|
@ -1387,8 +1387,9 @@ DEF_TRAVERSE_DECL(ObjCCompatibleAliasDecl, {// FIXME: implement
|
|||
|
||||
DEF_TRAVERSE_DECL(ObjCCategoryDecl, {// FIXME: implement
|
||||
if (ObjCTypeParamList *typeParamList = D->getTypeParamList()) {
|
||||
for (auto typeParam : *typeParamList)
|
||||
for (auto typeParam : *typeParamList) {
|
||||
TRY_TO(TraverseObjCTypeParamDecl(typeParam));
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue