Fix building on Windows.

This commit is contained in:
Roman Telezhynskyi 2024-03-25 17:12:24 +02:00
parent 276aeb8c73
commit 4dff6f303f

View File

@ -82,8 +82,8 @@ auto VCrashPaths::GetPlatformString(const QString &string) -> base::FilePath::St
#if defined(Q_OS_UNIX)
return string.toStdString();
#elif defined(Q_OS_WINDOWS)
#else
return string.toStdWString();
#else
#error GetPlatformString not implemented on this platform
#endif
}