build: fixed missing semicolons in Linux build
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
std::wstring SourceGroupSettingsWithCStandard::getDefaultCStandardStatic()
|
||||
{
|
||||
#ifdef __linux__
|
||||
return L"gnu11"
|
||||
return L"gnu11";
|
||||
#else
|
||||
return L"c11";
|
||||
#endif
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
std::wstring SourceGroupSettingsWithCppStandard::getDefaultCppStandardStatic()
|
||||
{
|
||||
#ifdef __linux__
|
||||
return L"gnu++17"
|
||||
return L"gnu++17";
|
||||
#else
|
||||
return L"c++17";
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user