Skip to content

Commit 44bd9f1

Browse files
committed
Exclude user-defined literals from NumericLiteral constructor
1 parent eac0acd commit 44bd9f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/common/src/codingstandards/cpp/Cpp14Literal.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module Cpp14Literal {
1111
abstract class NumericLiteral extends StandardLibrary::Literal {
1212
NumericLiteral() {
1313
// exclude user-defined literals as they define custom suffixes
14-
not this instanceof UserDefinedLiteral
14+
not this instanceof UserDefinedLiteral
1515
}
1616
}
1717

0 commit comments

Comments
 (0)