This is prefixed with std it seems.

This commit is contained in:
King_DuckZ 2020-04-12 17:44:09 +02:00
parent a1a7b8c5af
commit f7cdcd13a2

View file

@ -86,6 +86,6 @@ namespace duck::detail {
namespace duck {
int run_cmd_retcode (const char* command) {
assert(command);
return system(command);
return std::system(command);
}
} //namespace duck