aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/EventProcessor.h
diff options
context:
space:
mode:
authorTreeston <treeston.mmoc@gmail.com>2020-03-19 17:18:01 +0100
committerShauren <shauren.trinity@gmail.com>2021-12-24 00:37:21 +0100
commitea0aa63d96cac461dd0b473437f1143898d3c3b5 (patch)
tree036839443a9df03bdce5df5f55ecd449ba8daf94 /src/common/Utilities/EventProcessor.h
parent632609b897c7268bd18997633019dde98dd2e6d6 (diff)
Core/Misc: C++17 cleanups, commit 2, the advstd commit
(cherry picked from commit 857f8d9231d148d4f2def9c83548b40059923029)
Diffstat (limited to 'src/common/Utilities/EventProcessor.h')
-rw-r--r--src/common/Utilities/EventProcessor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/EventProcessor.h b/src/common/Utilities/EventProcessor.h
index 8da9c47a19f..bca70f57008 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
{