diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2012-09-14 06:53:38 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2012-09-14 06:53:38 (GMT) |
commit | 032a23d1e790c5224194562a837cc80fc157ce9b (patch) | |
tree | 5246377376393ad5e1ef46d944db14e8867d14c2 /src/FbTk | |
parent | e512c1becd6fc267e64460f0883a16b4975da19e (diff) | |
download | fluxbox_pavel-032a23d1e790c5224194562a837cc80fc157ce9b.zip fluxbox_pavel-032a23d1e790c5224194562a837cc80fc157ce9b.tar.bz2 |
removed duplicate function signature for FbTk::StringUtil::extractNumber()
Diffstat (limited to 'src/FbTk')
-rw-r--r-- | src/FbTk/StringUtil.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh index 9e45460..538828b 100644 --- a/src/FbTk/StringUtil.hh +++ b/src/FbTk/StringUtil.hh | |||
@@ -36,10 +36,10 @@ namespace StringUtil { | |||
36 | /// @return 1 - ok, result stored in 'out' | 36 | /// @return 1 - ok, result stored in 'out' |
37 | int extractNumber(const std::string& in, unsigned int& out); | 37 | int extractNumber(const std::string& in, unsigned int& out); |
38 | int extractNumber(const std::string& in, int& out); | 38 | int extractNumber(const std::string& in, int& out); |
39 | int extractNumber(const std::string& in, unsigned long& out); | ||
40 | int extractNumber(const std::string& in, long& out); | 39 | int extractNumber(const std::string& in, long& out); |
41 | int extractNumber(const std::string& in, long long& out); | 40 | int extractNumber(const std::string& in, long long& out); |
42 | int extractNumber(const std::string& in, unsigned long& out); | 41 | int extractNumber(const std::string& in, unsigned long& out); |
42 | int extractNumber(const std::string& in, unsigned long long& out); | ||
43 | /// \@} | 43 | /// \@} |
44 | 44 | ||
45 | /// creates a number to a string | 45 | /// creates a number to a string |