Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 2, 2015, 11:22:03 PM (9 years ago)
Author:
landauf
Message:

use actual types instead of 'auto'. only exception is for complicated template types, e.g. when iterating over a map

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/network/FunctionCall.cc

    r10821 r10916  
    131131  *(uint32_t*)(mem+2*sizeof(uint32_t)) = this->objectID_;
    132132  mem += 3*sizeof(uint32_t);
    133   for(auto & elem : this->arguments_)
     133  for(const MultiType& argument : this->arguments_)
    134134  {
    135     elem.exportData( mem );
     135    argument.exportData( mem );
    136136  }
    137137}
Note: See TracChangeset for help on using the changeset viewer.