1
0
mirror of synced 2025-02-17 18:59:21 +01:00

Added back missing semicolons...

This commit is contained in:
WerWolv 2021-01-27 01:11:14 +01:00
parent 47ca69b80e
commit 49b5deb9f4

View File

@ -160,9 +160,9 @@ namespace hex {
#if defined(OS_WINDOWS)
system(hex::format("start %s", url.data()).c_str());
#elif defined(OS_MACOS)
system(hex::format("open %s", url.data()).c_str())
system(hex::format("open %s", url.data()).c_str());
#elif defined(OS_LINUX)
system(hex::format("xdg-open %s", url.data()).c_str())
system(hex::format("xdg-open %s", url.data()).c_str());
#else
#warning "Unknown OS, can't open webpages"
#endif