Revert "Context: Converted from strtol to std::stoi"

This reverts commit 8e214d1b14.
This commit is contained in:
Paul Beckingham
2015-11-02 18:41:33 -05:00
parent a3736f6363
commit 3169490219

View File

@@ -611,7 +611,7 @@ void Context::getLimits (int& rows, int& lines)
} }
else else
{ {
rows = std::stoi (limit); rows = (int) strtol (limit.c_str (), NULL, 10);
lines = 0; lines = 0;
} }
} }