- fixed small compiling error for a function in testsuite

- indentation formatting on DebugRoutines
This commit is contained in:
Rolzad73
2017-01-30 14:02:25 -05:00
parent 4d3e463aba
commit a916c1067f
4 changed files with 15 additions and 15 deletions

View File

@@ -49,9 +49,9 @@ ostream& RandomGenerator::saveUsedRandValues(ostream& out) const
return out;
}
ostream& RandomGenerator::saveLoadedRandValues(ostream& out)
ostream& RandomGenerator::saveLoadedRandValues(ostream& out) const
{
list<int>::iterator ite;
list<int>::const_iterator ite;
for(ite=loadedRandomValues.begin(); ite != loadedRandomValues.end(); ite++)
{
out << *ite << ",";