Remove c++11 dependency from samples
parent
eb3ece84c5
commit
25f14381b3
@ -1,5 +1,5 @@
|
||||
void maxArray(double* x, double* y) {
|
||||
for (auto i = 0; i < 65536; i++) {
|
||||
for (int i = 0; i < 65536; i++) {
|
||||
if (y[i] > x[i]) x[i] = y[i];
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue