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:39:54 +00:00
committed by GitHub
parent acefadda8c
commit 877e9ba6d8

View File

@@ -197,7 +197,7 @@ class BuiltInOperationHasNoThrowCopy extends BuiltInOperation, @hasnothrowcopy {
* A C++ `__has_trivial_assign` built-in operation (used by some implementations
* of the `<type_traits>` header).
*
* Returns `true` if the type has a trivial (compiler-generated) assignment
* Returns `true` if the type has a trivial assignment
* operator (`operator =`).
* ```
* bool v = __has_trivial_assign(MyType);