applications/test/alloc: Avoid compilation warning

This commit is contained in:
Henry Weller
2018-08-31 16:10:05 +01:00
parent f8ecf8f98e
commit 9581ec1384

View File

@ -7,7 +7,7 @@ int main()
{
int *ptrs[500000];
// for (;;);
// for (;;);
cerr << "allocating ints\n";
@ -21,7 +21,7 @@ int main()
cerr << "allocating double\n";
double* array = new double[500000];
new double[500000];
for (;;);
}