Changed parse*Int functions so that it accepts iterators.

This commit is contained in:
Tatsuhiro Tsujikawa 2011-11-03 18:51:31 +09:00
parent 6ef91d60b3
commit 9bb914b76e
24 changed files with 435 additions and 260 deletions

View file

@ -30,7 +30,7 @@ void GZipEncoderTest::testEncode()
inputs.push_back("Fox");
encoder << inputs[0];
encoder << util::parseLLInt(inputs[1]);
encoder << util::parseLLInt(inputs[1].begin(), inputs[1].end());
encoder << inputs[2].c_str();
std::string gzippedData = encoder.str();