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:41 +00:00
committed by GitHub
parent fe5bd42203
commit 6262cee27d

View File

@@ -243,7 +243,7 @@ class BuiltInOperationHasTrivialCopy extends BuiltInOperation, @hastrivialcopy {
* A C++ `__has_trivial_destructor` built-in operation (used by some
* implementations of the `<type_traits>` header).
*
* Returns `true` if the type has a trivial (compiler-generated) destructor.
* Returns `true` if the type has a trivial destructor.
* ```
* bool v = __has_trivial_destructor(MyType);
* ```