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

Co-Authored-By: Jonas Jensen <jbj@github.com>
This commit is contained in:
Geoffrey White
2019-11-14 12:40:11 +00:00
committed by GitHub
parent 877e9ba6d8
commit d8aeedfe01

View File

@@ -213,7 +213,7 @@ class BuiltInOperationHasTrivialAssign extends BuiltInOperation, @hastrivialassi
* A C++ `__has_trivial_constructor` built-in operation (used by some
* implementations of the `<type_traits>` header).
*
* Returns `true` if the type has a trivial (compiler-generated) constructor.
* Returns `true` if the type has a trivial constructor.
* ```
* bool v = __has_trivial_constructor(MyType);
* ```