Skip to content

Commit 0822b06

Browse files
Fix locally different clang-format output compared to CI/CD
1 parent c3af72c commit 0822b06

File tree

1 file changed

+1
-1
lines changed
  • cpp/common/test/rules/shortcircuitedpersistentsideeffectshared

1 file changed

+1
-1
lines changed

cpp/common/test/rules/shortcircuitedpersistentsideeffectshared/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ int f6() { return 1; }
3939
void f7() {
4040
if (1 && sizeof(f5())) {
4141
} // COMPLIANT - sizeof operands not evaluated
42-
if (1 && noexcept(f5()) && noexcept(f5())) {
42+
if (1 &&noexcept(f5()) &&noexcept(f5())) {
4343
} // COMPLIANT - noexcept operands not evaluated
4444

4545
if (1 || (typeid(f6()) == typeid(f5()))) {

0 commit comments

Comments
 (0)