dding a timer delay but linak issue

This commit is contained in:
Clément Le Bihan
2021-06-19 15:26:59 +02:00
parent 462628b90e
commit 5c3c3555c9
6 changed files with 31 additions and 3 deletions
+8
View File
@@ -91,4 +91,12 @@ namespace BBM
return strings;
}
bool Utils::tryParseLong(const std::string &s, long &l)
{
std::istringstream iss(s);
iss >> std::noskipws >> l;
return iss.eof() && !iss.fail();
}
}