Skip to content

Commit 97eaff9

Browse files
authored
Simplify template exclusion test invocation
1 parent a165834 commit 97eaff9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • cpp/common/test/rules/unsignedintegerliteralsnotappropriatelysuffixed

cpp/common/test/rules/unsignedintegerliteralsnotappropriatelysuffixed/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ unsigned long long instantiated_literal_exclusion() {
118118
return 0x80000000; // COMPLIANT - template instantiation should be excluded
119119
}
120120

121-
void test_instantiated_literal_exclusion() { (void)instantiated_literal_exclusion<int>(); }
121+
void test_instantiated_literal_exclusion() { instantiated_literal_exclusion<int>(); }
122122

123123
void test_hexadecimal_constants() {
124124
0x0; // COMPLIANT - uses signed int

0 commit comments

Comments
 (0)