Skip to content

Commit 8e1f779

Browse files
[clang] [TargetCXXABI] Fix -Wextra-semi warning (NFC) (#96982)
While building a downstream project including `TargetCXXABI.h`, I received a `-Wextra-semi` warning. This PR removes the extra semicolon, fixing the warning.
1 parent 7d6de19 commit 8e1f779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Basic/TargetCXXABI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class TargetCXXABI {
116116
return T.isKnownWindowsMSVCEnvironment();
117117
}
118118
llvm_unreachable("invalid CXXABI kind");
119-
};
119+
}
120120

121121
/// Does this ABI generally fall into the Itanium family of ABIs?
122122
bool isItaniumFamily() const {

0 commit comments

Comments
 (0)