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:29 +00:00
committed by GitHub
parent d8aeedfe01
commit fe5bd42203

View File

@@ -228,7 +228,7 @@ class BuiltInOperationHasTrivialConstructor extends BuiltInOperation, @hastrivia
* A C++ `__has_trivial_copy` built-in operation (used by some implementations
* of the `<type_traits>` header).
*
* Returns true if the type has a trivial (compiler-generated) copy constructor.
* Returns true if the type has a trivial copy constructor.
* ```
* std::integral_constant< bool, __has_trivial_copy(MyType) > htc;
* ```