fixing compil

This commit is contained in:
Clément Le Bihan
2021-06-17 14:18:54 +02:00
parent b81001cc26
commit f8fa8f1b2b
4 changed files with 60 additions and 69 deletions
+5
View File
@@ -28,6 +28,11 @@ namespace BBM
//! @brief find the frequency of a substring in a string
static int findFrequency(const std::string &s, const std::string &pattern);
static bool tryParseInteger(const std::string &s, int &i);
static bool tryParseFloat(const std::string &s, float &f);
static std::vector<std::string> splitStr(const std::string &str, char delim);
};