We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6ad9d0 commit 9c4caf2Copy full SHA for 9c4caf2
clang-tools-extra/test/clang-tidy/checkers/bugprone/throw-keyword-missing.cpp
@@ -139,13 +139,14 @@ CtorInitializerListTest::CtorInitializerListTest(float) try : exc(RegularExcepti
139
RegularException();
140
}
141
142
-// https://github.com/llvm/llvm-project/issues/115055
+namespace GH115055 {
143
class CtorInitializerListTest2 {
144
public:
145
- CtorInitializerListTest2(){}
+ CtorInitializerListTest2() {}
146
private:
147
RegularException exc{};
148
};
149
+} // namespace GH115055
150
151
RegularException funcReturningExceptionTest(int i) {
152
return RegularException();
0 commit comments