diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-20 16:05:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-20 16:05:25 +0100 |
| commit | 419dfe4be4413831f61b83eac4a60e580c394ef1 (patch) | |
| tree | 013c2054e85493602d2de4ad74542f35ab2cd8fb /Source/Core/Common/Logging/LogManager.cpp | |
| parent | 1d4672455c00960dec2a9820cca2653fbf0c4bb5 (diff) | |
| parent | dde6090e9856d3d1b2051191a32deb8bda73f26b (diff) | |
Merge pull request #9260 from leoetlino/fmt-checks
Common/Log: Add compile-time format string checks
Diffstat (limited to 'Source/Core/Common/Logging/LogManager.cpp')
| -rw-r--r-- | Source/Core/Common/Logging/LogManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp index 6485db8eca..d882093adf 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -81,7 +81,7 @@ void GenericLog(LOG_LEVELS level, LOG_TYPE type, const char* file, int line, con } void GenericLogFmtImpl(LOG_LEVELS level, LOG_TYPE type, const char* file, int line, - std::string_view format, const fmt::format_args& args) + fmt::string_view format, const fmt::format_args& args) { auto* instance = LogManager::GetInstance(); if (instance == nullptr) |
