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

Co-authored-by: Mathias Vorreiter Pedersen <mathiasvp@github.com>
This commit is contained in:
Cornelius Riemenschneider
2020-11-26 10:39:17 +01:00
committed by GitHub
parent ba32459adf
commit 5d80417854

View File

@@ -579,11 +579,7 @@ class BoolType extends IntegralType {
*/
class CharType extends IntegralType {
CharType() {
builtintypes(underlyingElement(this), _, 5, _, _, _)
or
builtintypes(underlyingElement(this), _, 6, _, _, _)
or
builtintypes(underlyingElement(this), _, 7, _, _, _)
builtintypes(underlyingElement(this), _, [5, 6, 7], _, _, _)
}
}