Added back missing semicolons...

This commit is contained in:
WerWolv 2021-01-27 01:11:14 +01:00
parent 47ca69b80e
commit 49b5deb9f4
1 changed files with 2 additions and 2 deletions

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