Skip to content

Commit 80ca950

Browse files
committed
Change __builtin_types to __builtin_types_compatible_p
1 parent 2a292c7 commit 80ca950

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cpp/ql/src/semmle/code/cpp/exprs/BuiltInOperations.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,10 @@ class BuiltInOperationIsUnion extends BuiltInOperation, @isunionexpr {
210210
}
211211

212212
/**
213-
* A C++ `__builtin_types` expression (used by some implementations of the type_traits header).
213+
* A C++ `__builtin_types_compatible_p` expression (used by some implementations of the type_traits header).
214214
*/
215-
class BuiltInOperationBuiltInTypes extends BuiltInOperation, @typescompexpr {
216-
override string toString() { result = "__builtin_types" }
215+
class BuiltInOperationBuiltInTypesCompatibleP extends BuiltInOperation, @typescompexpr {
216+
override string toString() { result = "__builtin_types_compatible_p" }
217217
}
218218

219219
/**

0 commit comments

Comments
 (0)