aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/StringUtil.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-12-16 17:06:52 (GMT)
committerfluxgen <fluxgen>2003-12-16 17:06:52 (GMT)
commit72b878f78c0df0a54cf8e9f04bb2e22dd6715658 (patch)
tree2bd5252fe426875a8bb7ba77b61eeff695ee3c62 /src/FbTk/StringUtil.cc
parenta1930dbf6ae447e92a8dc063ab5d36057ae1babc (diff)
downloadfluxbox-72b878f78c0df0a54cf8e9f04bb2e22dd6715658.zip
fluxbox-72b878f78c0df0a54cf8e9f04bb2e22dd6715658.tar.bz2
fixed some icc warnings
Diffstat (limited to 'src/FbTk/StringUtil.cc')
-rw-r--r--src/FbTk/StringUtil.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbTk/StringUtil.cc b/src/FbTk/StringUtil.cc
index f7c14ce..4d282ad 100644
--- a/src/FbTk/StringUtil.cc
+++ b/src/FbTk/StringUtil.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: StringUtil.cc,v 1.8 2003/10/25 22:06:53 fluxgen Exp $ 22// $Id: StringUtil.cc,v 1.9 2003/12/16 17:06:52 fluxgen Exp $
23 23
24#include "StringUtil.hh" 24#include "StringUtil.hh"
25 25
@@ -196,6 +196,7 @@ string::size_type removeTrailingWhitespace(std::string &str) {
196 last_pos = str.find_first_of(" \t", last_pos); 196 last_pos = str.find_first_of(" \t", last_pos);
197 } 197 }
198 } 198 }
199 return first_pos;
199} 200}
200 201
201}; // end namespace StringUtil 202}; // end namespace StringUtil