Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 26, 2009, 11:18:13 AM (14 years ago)
Author:
rgrieder
Message:

Uniform code-styling per file. As if I didn't know what to do

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/libraries/core/Game.cc

    r6417 r6422  
    445445        {
    446446            int indentation = 0;
    447             while(pos < str.size() && str[pos] == ' ')
     447            while (pos < str.size() && str[pos] == ' ')
    448448                ++indentation, ++pos;
    449449            startPos = pos;
    450             while(pos < str.size() && str[pos] != ' ')
     450            while (pos < str.size() && str[pos] != ' ')
    451451                ++pos;
    452452            stateStrings.push_back(std::make_pair(str.substr(startPos, pos - startPos), indentation));
Note: See TracChangeset for help on using the changeset viewer.