Commit dc85ffd1 authored by Davis King's avatar Davis King

Changed the code to avoid a compiler warning from the Intel compiler.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402703
parent 98020b55
...@@ -1834,7 +1834,7 @@ convergence: ...@@ -1834,7 +1834,7 @@ convergence:
nr_ = (end_ - start_)/inc_ + 1; nr_ = (end_ - start_)/inc_ + 1;
} }
const long operator() ( long operator() (
long r, long r,
long c long c
) const { return start + r*inc; } ) const { return start + r*inc; }
...@@ -1876,7 +1876,7 @@ convergence: ...@@ -1876,7 +1876,7 @@ convergence:
const static long NR = (end - start)/inc + 1; const static long NR = (end - start)/inc + 1;
const static long NC = 1; const static long NC = 1;
const long operator() ( long operator() (
long r, long r,
long c long c
) const { return start + r*inc; } ) const { return start + r*inc; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment