Skip to content

Commit d1fae59

Browse files
committed
[clang-tidy] Fix build error (NFC)
/llvm-project/clang/include/clang/Analysis/FlowSensitive/NoopLattice.h:49:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi] }; // namespace llvm
1 parent 089237c commit d1fae59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Analysis/FlowSensitive/NoopLattice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ namespace llvm {
4646
// CLANG_LINK_CLANG_DYLIB
4747
extern template struct CLANG_TEMPLATE_ABI
4848
Any::TypeId<clang::dataflow::NoopLattice>;
49-
}; // namespace llvm
49+
} // namespace llvm
5050

5151
#endif // LLVM_CLANG_ANALYSIS_FLOWSENSITIVE_NOOP_LATTICE_H

0 commit comments

Comments
 (0)