Skip to content

Commit a12954a

Browse files
committed
C++: Remove outdated comment
1 parent d254524 commit a12954a

File tree

1 file changed

+1
-1
lines changed
  • cpp/ql/test/library-tests/variables/getanassignedvalue

1 file changed

+1
-1
lines changed

cpp/ql/test/library-tests/variables/getanassignedvalue/test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ myStruct2 v3 = {{4, "Four"}}; // assigments to `v3`, `ms2`, `num`, `str`
5050
// ---
5151

5252
int myArray[10] = {1, 2, 3}; // assigment to `myArray`
53-
char chars1[] = "abc"; // assignment to `chars1` (literal "abc" has no location)
53+
char chars1[] = "abc"; // assignment to `chars1`
5454
char chars2[] = {'a', 'b', 'c'}; // assigment to `chars2`
5555
char *chars3 = "abc"; // assigment to `chars3`

0 commit comments

Comments
 (0)