fixed resolution fo Int64

This commit is contained in:
aleks-f 2012-12-14 14:03:14 -06:00
parent f4121bcb92
commit 4a5cb5031b

View File

@ -230,7 +230,7 @@ void JSONTest::testNumber64Property()
Object::Ptr object = result.extract<Object::Ptr>();
Var test = object->get("test");
assert(test.isInteger());
Int64 value = test;
Poco::Int64 value = test;
assert(value == 5000000000000000);
}