Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for fmtlib 10. #2027

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
with:
qt-modules: qtpositioning qtwebchannel qtwebengine qtwebsockets
mo2-third-parties:
7z zlib fmt gtest libbsarch libloot openssl libffi bzip2 python lz4 spdlog
7z zlib fmt gtest libbsarch libloot openssl bzip2 python lz4 spdlog
boost boost-di sip pyqt pybind11 ss licenses explorerpp usvfs
mo2-dependencies: cmake_common uibase githubpp bsatk esptk archive lootcli game_gamebryo
4 changes: 2 additions & 2 deletions src/spawn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ QString makeDetails(const SpawnParameters& sp, DWORD code, const QString& more =
const std::wstring wmore = (more.isEmpty() ? L"" : (", " + more).toStdWString());

const auto s = fmt::format(
f, fmt::arg(L"code", code), fmt::arg(L"codename", errorCodeName(code)),
fmt::arg(L"more", wmore),
fmt::runtime(f), fmt::arg(L"code", code),
fmt::arg(L"codename", errorCodeName(code)), fmt::arg(L"more", wmore),
fmt::arg(L"bin",
QDir::toNativeSeparators(sp.binary.absoluteFilePath()).toStdWString()),
fmt::arg(L"owner", owner), fmt::arg(L"rights", rights),
Expand Down
Loading