aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/managers/KeybindManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/managers/KeybindManager.cpp')
-rw-r--r--src/managers/KeybindManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp
index a5327149..7f10249a 100644
--- a/src/managers/KeybindManager.cpp
+++ b/src/managers/KeybindManager.cpp
@@ -2988,13 +2988,13 @@ SDispatchResult CKeybindManager::setProp(std::string args) {
else
configStringToInt(TOKEN).and_then([&colorData](const auto& e) {
colorData.m_vColors.push_back(e);
- return std::result_of<decltype (&configStringToInt)(std::string)>::type(1);
+ return std::invoke_result_t<decltype(::configStringToInt), const std::string&>(1);
});
}
} else if (VAL != "-1")
configStringToInt(VAL).and_then([&colorData](const auto& e) {
colorData.m_vColors.push_back(e);
- return std::result_of<decltype (&configStringToInt)(std::string)>::type(1);
+ return std::invoke_result_t<decltype(::configStringToInt), const std::string&>(1);
});
if (PROP == "activebordercolor")