From a9f1edeb614297ba1bf20529e1888929252a9f60 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 16 May 2023 14:11:02 -0400 Subject: StringUtil: Move IsAlpha() into Common namespace --- Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp') diff --git a/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp b/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp index 1c3e997769..e28e044866 100644 --- a/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp +++ b/Source/Core/InputCommon/ControllerInterface/MappingCommon.cpp @@ -43,7 +43,7 @@ std::string GetExpressionForControl(const std::string& control_name, { // If our expression contains any non-alpha characters // we should quote it - if (!std::all_of(expr.begin(), expr.end(), IsAlpha)) + if (!std::all_of(expr.begin(), expr.end(), Common::IsAlpha)) expr = fmt::format("`{}`", expr); } -- cgit v1.2.3