Skip to content

Commit

Permalink
Merge pull request #37 from breznak/use_c++98
Browse files Browse the repository at this point in the history
revert forgotten use of auto
  • Loading branch information
subutai committed Mar 6, 2014
2 parents 8281740 + c4267ac commit 3ecc06a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/LoggingException.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ namespace nta
{
lmessageValid_ = false;
ss_ << "[";
for(auto vec : v)
ss_ << vec << " ";
for(int i=0; i<v.size(); i++)
ss_ << v[i] << " ";
ss_ << "]";
return *this;
}
Expand Down

0 comments on commit 3ecc06a

Please sign in to comment.