diff options
author | Treeston <treeston.mmoc@gmail.com> | 2020-03-19 17:18:01 +0100 |
---|---|---|
committer | Treeston <treeston.mmoc@gmail.com> | 2020-03-19 17:18:01 +0100 |
commit | 857f8d9231d148d4f2def9c83548b40059923029 (patch) | |
tree | 5a84026aa3861e311374e607104a5a2348bbfeeb /src/common/Utilities/EventProcessor.h | |
parent | ac9004a2f9fa7af7c7735168e7bc5c08d6cacca7 (diff) |
Core/Misc: C++17 cleanups, commit 2, the advstd commit
Diffstat (limited to 'src/common/Utilities/EventProcessor.h')
-rw-r--r-- | src/common/Utilities/EventProcessor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/EventProcessor.h b/src/common/Utilities/EventProcessor.h index 304dbb3642c..a64bd4ffc2d 100644 --- a/src/common/Utilities/EventProcessor.h +++ b/src/common/Utilities/EventProcessor.h @@ -88,7 +88,7 @@ private: }; template<typename T> -using is_lambda_event = std::enable_if_t<!advstd::is_base_of_v<BasicEvent, std::remove_pointer_t<advstd::remove_cvref_t<T>>>>; +using is_lambda_event = std::enable_if_t<!std::is_base_of_v<BasicEvent, std::remove_pointer_t<advstd::remove_cvref_t<T>>>>; class TC_COMMON_API EventProcessor { |