Skip to content

Commit f1e0706

Browse files
authored
Apply suggestions from code review
1 parent 59e170e commit f1e0706

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cpp/ql/lib/semmle/code/cpp/exprs/BuiltInOperations.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1969,7 +1969,7 @@ class BuiltInOperationIsBitwiseCloneable extends BuiltInOperation, @isbitwiseclo
19691969
*
19701970
* ```
19711971
* template<typename _FTpn, typename... _Tps>
1972-
* struct is_trivially_relocatable
1972+
* struct is_invocable
19731973
* : public integral_constant<bool, __is_invocable(_FTpn, _Tps...)>
19741974
* {};
19751975
* ```
@@ -1985,12 +1985,12 @@ class BuiltInOperationIsInvocable extends BuiltInOperation, @isinvocable {
19851985
* of the `<type_traits>` header).
19861986
*
19871987
* Returns `true` if a function of non-throwing type `_FTpn` can be invoked
1988-
* with arguments of type `_Tps`, and if `_FTpn`.
1988+
* with arguments of type `_Tps`.
19891989
*
19901990
* ```
19911991
* template<typename _FTpn, typename... _Tps>
1992-
* struct is_trivially_relocatable
1993-
* : public integral_constant<bool, __is_invocable(_FTpn, _Tps...)>
1992+
* struct is_nothrow_invocable
1993+
* : public integral_constant<bool, __is_nothrow_invocable(_FTpn, _Tps...)>
19941994
* {};
19951995
* ```
19961996
*/

0 commit comments

Comments
 (0)