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/Loader.cc

    r6417 r6422  
    244244                    {
    245245                        it2++;
    246                         if(it->second && !(it2->second) && it2->first < pos)
     246                        if (it->second && !(it2->second) && it2->first < pos)
    247247                            it = ++it2;
    248248                        else
     
    307307                        unsigned int tempCounter = 1;
    308308                        size_t tempPos = pos++;
    309                         while(temp[++tempPos] == '=')
     309                        while (temp[++tempPos] == '=')
    310310                        {
    311311                            tempCounter++;
    312312                        }
    313                         if(temp[tempPos] != '[')
     313                        if (temp[tempPos] != '[')
    314314                        {
    315315                            tempCounter = 0;
    316316                        }
    317                         else if(tempCounter == 0)
     317                        else if (tempCounter == 0)
    318318                        {
    319319                            tempCounter = 1;
     
    329329                            unsigned int tempCounter = 1;
    330330                            size_t tempPos = pos++;
    331                             while(temp[++tempPos] == '=')
     331                            while (temp[++tempPos] == '=')
    332332                            {
    333333                                tempCounter++;
    334334                            }
    335                             if(temp[tempPos] != ']')
     335                            if (temp[tempPos] != ']')
    336336                            {
    337337                                tempCounter = 0;
    338338                            }
    339                             else if(tempCounter == 0)
     339                            else if (tempCounter == 0)
    340340                            {
    341341                                tempCounter = 1;
     
    346346                    }
    347347                    std::string equalSigns;
    348                     for(unsigned int i = 0; i < equalSignCounter; i++)
     348                    for (unsigned int i = 0; i < equalSignCounter; i++)
    349349                    {
    350350                        equalSigns += '=';
Note: See TracChangeset for help on using the changeset viewer.