Forgot to add semi-colon to unsupported platform message

This commit is contained in:
Jordon Brooks 2024-05-22 18:59:53 +01:00
parent 18129ac7c2
commit 7dbe088577
Signed by: jordon
GPG key ID: DBD9758CD53E786A

View file

@ -49,7 +49,7 @@ namespace HarmonyLinkLib
INSTANCE = std::make_shared<UnixUtilities>();
// ... other platform checks
#else
std::wcout << "Platform is not supported.\n"
std::wcout << "Platform is not supported.\n";
#endif
}