Skip to content
Snippets Groups Projects
Commit 428d6382 authored by Pep Martí Saumell's avatar Pep Martí Saumell
Browse files

[minor] remove print

parent 715c47c9
No related branches found
No related tags found
2 merge requests!20new tag,!19new tag
......@@ -244,8 +244,8 @@ void Navigation::copySbasCorrections(const nav_t& nav)
nav_.pcvs[i].sat = nav.pcvs[i].sat;
nav_.pcvs[i].te = nav.pcvs[i].te;
nav_.pcvs[i].ts = nav.pcvs[i].ts;
std::cout << "copySbasCorrections : " << nav.pcvs[i].te.time << " + " << nav.pcvs[i].te.sec << "\n";
std::cout << "copySbasCorrections : " << nav_.pcvs[i].te.time << " + " << nav_.pcvs[i].te.sec << "\n";
// std::cout << "copySbasCorrections : " << nav.pcvs[i].te.time << " + " << nav.pcvs[i].te.sec << "\n";
// std::cout << "copySbasCorrections : " << nav_.pcvs[i].te.time << " + " << nav_.pcvs[i].te.sec << "\n";
std::copy(nav.pcvs[i].type, nav.pcvs[i].type + ARRAY_SIZE(nav.pcvs[i].type), nav_.pcvs[i].type);
std::copy(&nav.pcvs[i].var[0][0], &nav.pcvs[i].var[0][0] + ARRAY2D_SIZE(nav.pcvs[i].var), &nav_.pcvs[i].var[0][0]);
}
......
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