1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-23 15:36:59 +00:00

added ignore to prevent warnings

This commit is contained in:
Zeno Rogue 2021-04-07 20:00:49 +02:00
parent c0901b47c8
commit b470af5d89

View File

@ -715,11 +715,11 @@ EX void open_url(string s) {
#endif #endif
#ifdef LINUX #ifdef LINUX
system(("xdg-open "+s).c_str()); ignore(system(("xdg-open "+s).c_str()));
#endif #endif
#ifdef MAC #ifdef MAC
system(("open "+s).c_str()); ignore(system(("open "+s).c_str()));
#endif #endif
#endif #endif
} }