Fix build with STLPort from NDK r8d
This commit is contained in:
@@ -32,7 +32,7 @@ public:
|
||||
ifstream f(path.c_str());
|
||||
if (!f.is_open())
|
||||
throw runtime_error("can't open motions file: " + path);
|
||||
int size; f >> size;
|
||||
int size = 0; f >> size;
|
||||
motions_.resize(size);
|
||||
for (int i = 0; i < size; ++i)
|
||||
{
|
||||
|
Reference in New Issue
Block a user