Skip to content

Commit

Permalink
Change not to ! for MSVC
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Burton <[email protected]>
  • Loading branch information
markfoodyburton authored and tmarcero committed Apr 9, 2024
1 parent a77ea38 commit bd7fa97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report/include/scp/report.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ class call_sc_name_fn
// define a function IF NOT the method exists
template <class TYPE>
auto operator()(TYPE* p) const
-> std::enable_if_t<not has_method<TYPE>, const char*> {
-> std::enable_if_t<!has_method<TYPE>, const char*> {
return nullptr;
}
};
Expand Down

0 comments on commit bd7fa97

Please sign in to comment.