Fix testcase causing nodejs test failure

This commit is contained in:
William S Fulton 2016-07-30 15:00:55 +01:00
commit 0177937f7e

View file

@ -22,7 +22,7 @@ int** makeIntPtrPtr(int* v) {
void displayVector(std::vector<int *> vpi) {
cout << "displayVector..." << endl;
for (int i=0; i<vpi.size(); ++i)
for (size_t i=0; i<vpi.size(); ++i)
cout << *vpi[i] << endl;
}
int getValueFromVector(std::vector<int *> vpi, size_t index) {