use std::system

This commit is contained in:
Dane Springmeyer 2015-10-19 10:01:33 -07:00
parent d9a66a765c
commit c8867d1419

View file

@ -108,7 +108,7 @@ struct main_marker_visitor
#else
s << "xdg-open " << png_name;
#endif
int ret = system(s.str().c_str());
int ret = std::system(s.str().c_str());
if (ret != 0)
status = ret;
}