File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ struct LocaleTest : public PluginTest
2222 : PluginTest (" Ensuring that the locale does not change during execution" , 1 ,
2323 { Requirements::Thread::messageThread, Requirements::GUI::requiresGUI })
2424 {
25- startupLocale = std:: setlocale (LC_ALL, nullptr );
25+ startupLocale = setlocale (LC_ALL, nullptr );
2626 }
2727
2828 void runTest (PluginTests& ut, juce::AudioPluginInstance& instance) override
@@ -40,7 +40,7 @@ struct LocaleTest : public PluginTest
4040 }
4141 }
4242
43- std::string newLocale = std:: setlocale (LC_ALL, nullptr );
43+ std::string newLocale = setlocale (LC_ALL, nullptr );
4444 ut.expectEquals (startupLocale, newLocale, " Plugin changed locale. This can cause unexpected behavior." );
4545 ut.logMessage (juce::String (" INFO: Shutdown Locale: [LOC]" )
4646 .replace (" LOC" ,juce::String (newLocale), false ));
You can’t perform that action at this time.
0 commit comments