Skip to content
Snippets Groups Projects
Commit 094d1080 authored by Tammo Jan Dijkema's avatar Tammo Jan Dijkema
Browse files

Task #11559: remove C++11 auto keyword to keen jenkins happy

parent db01c216
No related branches found
No related tags found
No related merge requests found
......@@ -42,9 +42,9 @@ namespace LOFAR {
double lowmatch, highmatch;
auto src_val = ax_src.begin();
auto tgt_val = ax_tgt.begin();
auto index_val = indices.begin();
vector<double>::const_iterator src_val = ax_src.begin();
vector<double>::const_iterator tgt_val = ax_tgt.begin();
vector<size_t>::iterator index_val = indices.begin();
while (tgt_val != ax_tgt.end()) {
while (*src_val < *tgt_val && src_val != ax_src.end()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment