forked from OSchip/llvm-project
Use _LIBCPP_FALLTHROUGH() to avoid warnings about [[gnu::fallthrough]] being unsupported
llvm-svn: 305500
This commit is contained in:
parent
cb0d5dc01f
commit
187fd40ca4
|
|
@ -2258,7 +2258,7 @@ parse_type(const char* first, const char* last, C& db)
|
|||
break;
|
||||
}
|
||||
}
|
||||
[[gnu::fallthrough]];
|
||||
_LIBCPP_FALLTHROUGH();
|
||||
default:
|
||||
// must check for builtin-types before class-enum-types to avoid
|
||||
// ambiguities with operator-names
|
||||
|
|
|
|||
Loading…
Reference in New Issue