Skip to content

Commit 5891a8f

Browse files
committed
[clang] Remove extra ';' in MultiplexExternalSemaSource.cpp (NFC)
/llvm-project/clang/lib/Sema/MultiplexExternalSemaSource.cpp:317:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi] }; ^ 1 error generated.
1 parent 030047c commit 5891a8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Sema/MultiplexExternalSemaSource.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ void MultiplexExternalSemaSource::ReadPendingInstantiationsOfConstexprEntity(
314314
const NamedDecl *D, llvm::SmallSetVector<NamedDecl *, 4> &Decls) {
315315
for (size_t i = 0; i < Sources.size(); ++i)
316316
Sources[i]->ReadPendingInstantiationsOfConstexprEntity(D, Decls);
317-
};
317+
}
318318

319319
void MultiplexExternalSemaSource::ReadLateParsedTemplates(
320320
llvm::MapVector<const FunctionDecl *, std::unique_ptr<LateParsedTemplate>>

0 commit comments

Comments
 (0)