Skip to content

Commit

Permalink
missing initializer, fix #185
Browse files Browse the repository at this point in the history
  • Loading branch information
0u812 committed Sep 1, 2015
1 parent f31c0ac commit acd406d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Integrator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace rr
std::string Integrator::getParamName(int n) const
{
SettingsMap::const_iterator i = settings.begin();
int k;
int k=0;
while (k<n) {
if (i == settings.end()) {
std::stringstream ss;
Expand Down

0 comments on commit acd406d

Please sign in to comment.