Skip to content

Commit 174b304

Browse files
committed
C++: Fix syntax error in testfile
1 parent 834ad92 commit 174b304

File tree

1 file changed

+1
-1
lines changed
  • cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis

1 file changed

+1
-1
lines changed

cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ int test_unsigned_mult01(unsigned int a, unsigned b) {
431431

432432
if (3 <= a && a <= 11 && 5 <= b && b <= 23) {
433433
int r = a*b; // 15 .. 253
434-
total += r;11*
434+
total += r;
435435
}
436436
if (3 <= a && a <= 11 && 0 <= b && b <= 23) {
437437
int r = a*b; // 0 .. 253

0 commit comments

Comments
 (0)