Skip to content

Commit

Permalink
fix: remove c++20 feature (1)
Browse files Browse the repository at this point in the history
  • Loading branch information
arBmind committed Mar 22, 2024
1 parent eaaff01 commit b88db9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/qbsprojectmanager/qbsprojectmanagerplugin.cpp
Expand Up @@ -73,7 +73,7 @@ static QbsProject *currentEditorProject()
static void windowsStartProcessDetached(FilePath appPath, QStringList args) {
// note: QProcess cannot launch devenv.exe correctly. Default escape codes don't work here
#if defined(Q_OS_WIN)
auto startupInfo = STARTUPINFOW{.cb = sizeof(STARTUPINFOW)};
auto startupInfo = STARTUPINFOW{sizeof(STARTUPINFOW)};
auto processInfo = PROCESS_INFORMATION{};

auto cmdLine = QString{appPath.fileName() + ' ' + args.join(" ")};
Expand Down

0 comments on commit b88db9a

Please sign in to comment.