Skip to content

Commit 61ae04f

Browse files
committed
More formatting
1 parent 23be3db commit 61ae04f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cpp/misra/test/rules/RULE-7-0-6/test_operators.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ void test_user_defined_operators() {
119119
l1 % l4; // NON_COMPLIANT - different type
120120
l1 % l5; // NON_COMPLIANT - different signedness
121121

122-
l1 &l2; // COMPLIANT - exact type match
123-
l1 &l3; // COMPLIANT - widening conversion is allowed
124-
l1 &l4; // NON_COMPLIANT - different type
125-
l1 &l5; // NON_COMPLIANT - different signedness
122+
l1 &l2; // COMPLIANT - exact type match
123+
l1 &l3; // COMPLIANT - widening conversion is allowed
124+
l1 &l4; // NON_COMPLIANT - different type
125+
l1 &l5; // NON_COMPLIANT - different signedness
126126

127127
l1 | l2; // COMPLIANT - exact type match
128128
l1 | l3; // COMPLIANT - widening conversion is allowed

0 commit comments

Comments
 (0)