Skip to content

Commit 9c4caf2

Browse files
author
Carlos Gálvez
committed
Fix review comments
1 parent c6ad9d0 commit 9c4caf2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang-tools-extra/test/clang-tidy/checkers/bugprone/throw-keyword-missing.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,14 @@ CtorInitializerListTest::CtorInitializerListTest(float) try : exc(RegularExcepti
139139
RegularException();
140140
}
141141

142-
// https://github.com/llvm/llvm-project/issues/115055
142+
namespace GH115055 {
143143
class CtorInitializerListTest2 {
144144
public:
145-
CtorInitializerListTest2(){}
145+
CtorInitializerListTest2() {}
146146
private:
147147
RegularException exc{};
148148
};
149+
} // namespace GH115055
149150

150151
RegularException funcReturningExceptionTest(int i) {
151152
return RegularException();

0 commit comments

Comments
 (0)