Utils/Console: Fix 64bit error
g0dil [Tue, 27 Oct 2009 12:43:50 +0000 (12:43 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1511 270642c3-0616-0410-b53a-bc976706d245

senf/Utils/Console/Utility.ct

index 14b5094..bd132fb 100644 (file)
@@ -39,7 +39,7 @@ parse(ParseCommandInfo::TokensRange const & tokens, type & out)
     if (tokens.size() != 1)
         throw senf::console::SyntaxErrorException("parameter syntax error");
     std::string v (tokens.begin()[0].value());
-    unsigned i (v.find(':'));
+    std::string::size_type i (v.find(':'));
     try {
         if (i == std::string::npos)
             out.low = out.high = boost::lexical_cast<T>(v);