Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7274


Ignore:
Timestamp:
Aug 30, 2010, 11:21:15 PM (14 years ago)
Author:
rgrieder
Message:

MSVC build fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/consolecommands3/src/libraries/core/command/Executor.cc

    r7270 r7274  
    4646    }
    4747
    48     Executor::Executor(const Executor& other) : name_(other.name_), defaultValue_(other.defaultValue_)
     48    Executor::Executor(const Executor& other) : name_(other.name_)
    4949    {
     50        for (int i = 0; i < MAX_FUNCTOR_ARGUMENTS; ++i)
     51            defaultValue_[i] = other.defaultValue_[i];
    5052        this->functor_ = other.functor_->clone();
    5153    }
Note: See TracChangeset for help on using the changeset viewer.