diff options
| author | JMC47 <JMC4789@gmail.com> | 2024-09-26 18:20:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-26 18:20:14 -0400 |
| commit | 0d7e94e8b3019a3eeffe0b1f454ece1342c0911e (patch) | |
| tree | f2daa7139696aff3a2bed73c88bf19de3735cca4 /Source/Core/Common/ArmCPUDetect.cpp | |
| parent | 4bc1546596994c3f6e82b0be421c82f6fbf86a86 (diff) | |
| parent | 5f906736863f35a7018aaa11a7cac408229c21cf (diff) | |
Merge pull request #13070 from mitaclaw/remove-join-strings
StringUtil: Remove `JoinStrings`
Diffstat (limited to 'Source/Core/Common/ArmCPUDetect.cpp')
| -rw-r--r-- | Source/Core/Common/ArmCPUDetect.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Common/ArmCPUDetect.cpp b/Source/Core/Common/ArmCPUDetect.cpp index 84cf727695..90cc0f7b44 100644 --- a/Source/Core/Common/ArmCPUDetect.cpp +++ b/Source/Core/Common/ArmCPUDetect.cpp @@ -28,6 +28,7 @@ #endif #include <fmt/format.h> +#include <fmt/ranges.h> #include "Common/CommonTypes.h" #include "Common/FileUtil.h" @@ -332,5 +333,5 @@ std::string CPUInfo::Summarize() if (bSHA2) sum.push_back("SHA2"); - return JoinStrings(sum, ","); + return fmt::to_string(fmt::join(sum, ",")); } |
