Commit 697cf407 authored by Kosta's avatar Kosta

fixed a compiler error not caught by VS2012...

parent d2a374b4
......@@ -1336,7 +1336,7 @@ int z = a[0u].GetInt(); // This works too.
return handler.EndArray(data_.a.size);
case kStringType:
return handler.String(data_.GetString(), data_.GetStringLength(), (flags_ & kCopyFlag) != 0);
return handler.String(GetString(), GetStringLength(), (flags_ & kCopyFlag) != 0);
case kNumberType:
if (IsInt()) return handler.Int(data_.n.i.i);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment