Update cpp/ql/src/semmle/code/cpp/Type.qll

Co-Authored-By: Jonas Jensen <jbj@github.com>
This commit is contained in:
Geoffrey White
2019-11-13 15:52:15 +00:00
committed by GitHub
parent abcf9e0d78
commit 4c6fd004e6

View File

@@ -355,7 +355,7 @@ private predicate isArithmeticType(@builtintype type, int kind) {
*
* This includes primitive types on which arithmetic, bitwise or logical
* operations may be performed. Examples of arithmetic types include
* `char`, `int`, `float` and `bool`.
* `char`, `int`, `float`, and `bool`.
*/
class ArithmeticType extends BuiltInType {
ArithmeticType() { isArithmeticType(underlyingElement(this), _) }