remove implicitly defined inline keywords from header-implemented functions in Extractor/ExtractionHelperFunctions.h

This commit is contained in:
Dennis Luxen 2014-08-29 10:08:26 +02:00
parent f452e7f9d2
commit 90d191f5f8

View File

@ -41,7 +41,7 @@ namespace qi = boost::spirit::qi;
// TODO: Move into LUA // TODO: Move into LUA
inline bool durationIsValid(const std::string &s) bool durationIsValid(const std::string &s)
{ {
boost::regex e( boost::regex e(
"((\\d|\\d\\d):(\\d|\\d\\d):(\\d|\\d\\d))|((\\d|\\d\\d):(\\d|\\d\\d))|(\\d|\\d\\d)", "((\\d|\\d\\d):(\\d|\\d\\d):(\\d|\\d\\d))|((\\d|\\d\\d):(\\d|\\d\\d))|(\\d|\\d\\d)",
@ -53,7 +53,7 @@ inline bool durationIsValid(const std::string &s)
return matched; return matched;
} }
inline unsigned parseDuration(const std::string &s) unsigned parseDuration(const std::string &s)
{ {
unsigned hours = 0; unsigned hours = 0;
unsigned minutes = 0; unsigned minutes = 0;