removed duplicate function signature for FbTk::StringUtil::extractNumber()
This commit is contained in:
parent
e512c1becd
commit
032a23d1e7
1 changed files with 1 additions and 1 deletions
|
@ -36,10 +36,10 @@ namespace StringUtil {
|
|||
/// @return 1 - ok, result stored in 'out'
|
||||
int extractNumber(const std::string& in, unsigned int& out);
|
||||
int extractNumber(const std::string& in, int& out);
|
||||
int extractNumber(const std::string& in, unsigned long& out);
|
||||
int extractNumber(const std::string& in, long& out);
|
||||
int extractNumber(const std::string& in, long long& out);
|
||||
int extractNumber(const std::string& in, unsigned long& out);
|
||||
int extractNumber(const std::string& in, unsigned long long& out);
|
||||
/// \@}
|
||||
|
||||
/// creates a number to a string
|
||||
|
|
Loading…
Reference in a new issue