Fix testcase causing nodejs test failure
This commit is contained in:
parent
91aba9f719
commit
0177937f7e
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue