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:48:05 +00:00
committed by GitHub
parent 0bb37c17f2
commit 45cc6c445c

View File

@@ -566,7 +566,7 @@ class BuiltInOperationIsNothrowDestructible extends BuiltInOperation, @isnothrow
* implementations of the `<type_traits>` header).
*
* Returns `true` if the type is destructible and whose destructor, and those
* of member data and any super`class`es are all trivial (compiler-generated).
* of member data and any superclasses are all trivial.
* ```
* bool v = __is_trivially_destructible(MyType);
* ```