diff options
author | Jie Fu <jiefu@tencent.com> | 2023-11-30 15:53:36 +0800 |
---|---|---|
committer | Jie Fu <jiefu@tencent.com> | 2023-11-30 15:53:36 +0800 |
commit | 5891a8f7ce0a7b866a5bc06c34092fbdb28dda1c (patch) | |
tree | d8eb9d9bc359002605c80dcc4a409b239f353559 /clang/lib/Sema/MultiplexExternalSemaSource.cpp | |
parent | 030047c432cac133738be68fa0974f70e69dd58d (diff) | |
download | llvm-5891a8f7ce0a7b866a5bc06c34092fbdb28dda1c.zip llvm-5891a8f7ce0a7b866a5bc06c34092fbdb28dda1c.tar.gz llvm-5891a8f7ce0a7b866a5bc06c34092fbdb28dda1c.tar.bz2 |
[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.
Diffstat (limited to 'clang/lib/Sema/MultiplexExternalSemaSource.cpp')
-rw-r--r-- | clang/lib/Sema/MultiplexExternalSemaSource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/MultiplexExternalSemaSource.cpp b/clang/lib/Sema/MultiplexExternalSemaSource.cpp index d0d6a3a..100794d 100644 --- a/clang/lib/Sema/MultiplexExternalSemaSource.cpp +++ b/clang/lib/Sema/MultiplexExternalSemaSource.cpp @@ -314,7 +314,7 @@ void MultiplexExternalSemaSource::ReadPendingInstantiationsOfConstexprEntity( const NamedDecl *D, llvm::SmallSetVector<NamedDecl *, 4> &Decls) { for (size_t i = 0; i < Sources.size(); ++i) Sources[i]->ReadPendingInstantiationsOfConstexprEntity(D, Decls); -}; +} void MultiplexExternalSemaSource::ReadLateParsedTemplates( llvm::MapVector<const FunctionDecl *, std::unique_ptr<LateParsedTemplate>> |