From 7dbe088577b6b78414a61d9d5878e910f2f142ce Mon Sep 17 00:00:00 2001 From: Jordon Brooks Date: Wed, 22 May 2024 18:59:53 +0100 Subject: [PATCH] Forgot to add semi-colon to unsupported platform message --- HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp b/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp index 735eeab..555cc10 100644 --- a/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp +++ b/HarmonyLinkLib/src/Platform/IPlatformUtilities.cpp @@ -49,7 +49,7 @@ namespace HarmonyLinkLib INSTANCE = std::make_shared(); // ... other platform checks #else - std::wcout << "Platform is not supported.\n" + std::wcout << "Platform is not supported.\n"; #endif }