Skip to content

Commit 71b3ead

Browse files
committed
[clang][dataflow] Remove a redundant trailing semicolon. NFC.
This silences the following warning with GCC: llvm-project/llvm/tools/clang/unittests/Analysis/FlowSensitive/TypeErasedDataflowAnalysisTest.cpp:89:4: warning: extra ‘;’ [-Wpedantic] 89 | }; | ^ | -
1 parent ca5d34e commit 71b3ead

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/unittests/Analysis/FlowSensitive/TypeErasedDataflowAnalysisTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class DataflowAnalysisTest : public Test {
8686
const std::optional<StateT> &MaybeState = BlockStates[Block->getBlockID()];
8787
assert(MaybeState.has_value());
8888
return *MaybeState;
89-
};
89+
}
9090

9191
std::unique_ptr<ASTUnit> AST;
9292
std::unique_ptr<ControlFlowContext> CFCtx;

0 commit comments

Comments
 (0)