We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b325e9 commit 250ed48Copy full SHA for 250ed48
cpp/ql/lib/semmle/code/cpp/commons/StringConcatenation.qll
@@ -47,7 +47,7 @@ class StringConcatenation extends Call {
47
// occurs in cases like `string s = s1 + s2 + s3`, which is represented as
48
// `string s = (s1.operator+(s2)).operator+(s3);`
49
// By limiting to non-calls we get the leaf operands (the variables or raw strings)
50
- // also, by not enuemrating allowed types (variables and strings) we avoid issues
+ // also, by not enumerating allowed types (variables and strings) we avoid issues
51
// with missed corner cases or extensions/changes to CodeQL in the future which might
52
// invalidate that approach.
53
not result instanceof Call and
0 commit comments