std namespace issue with strtok

This commit is contained in:
Mario Fink 2019-05-16 16:43:10 +02:00
parent 161541f4c6
commit c46194c0be

View File

@ -263,7 +263,7 @@ public:
std::time_t tstime = ts - 1970*avgdaysofyear*86400;
// get rid of linebreak character and return the result
return std::strtok(std::ctime(&tstime),"\n");
return strtok(std::ctime(&tstime),"\n");
}
std::string time_stamp(int groupid, bool startstop = true)