2008-10-05 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Changed the type of offset to int.
	* src/ParameterizedStringParser.cc
pull/1/head
Tatsuhiro Tsujikawa 2008-10-05 02:47:09 +00:00
parent 3da45c763b
commit 04a2bd3818
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-10-05 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Changed the type of offset to int.
* src/ParameterizedStringParser.cc
2008-10-04 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Made getAsInt() return int32_t

View File

@ -47,7 +47,7 @@ namespace aria2 {
PStringDatumHandle ParameterizedStringParser::parse(const std::string& src)
{
int32_t offset = 0;
int offset = 0;
return diggPString(src, offset);
}