Skip to content
Snippets Groups Projects
Commit 48ae7a79 authored by Markus Blatt's avatar Markus Blatt
Browse files

Fixed bug: Use N() of v2 as limit.

[[Imported from SVN: r698]]
parent 01d5553b
Branches
Tags
No related merge requests found
......@@ -36,7 +36,7 @@ int testVector()
for(int i=0; i < v.N(); ++i)
v[i] = i;
for(int i=0; i < v.N(); ++i)
for(int i=0; i < v2.N(); ++i)
v2[i] = i*10;
w = v;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment