Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 30, 2015, 2:36:27 PM (9 years ago)
Author:
landauf
Message:

fixed mapping of FunctionIDs - same reason like for ClassIDs in r10564

File:
1 edited

Legend:

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

    r10478 r10565  
    4747
    4848bool FunctionCall::execute(){
    49   NetworkFunctionBase* fct = static_cast<NetworkFunctionStatic*>(NetworkFunctionManager::getInstance().getFunctionByNetworkId( this->functionID_ ));
     49  NetworkFunctionBase* fct = NetworkFunctionManager::getInstance().getFunctionByNetworkId( this->functionID_ );
     50  assert( fct != NULL );
    5051  assert( this->nrOfArguments_==this->arguments_.size() );
    5152  switch(this->nrOfArguments_)
Note: See TracChangeset for help on using the changeset viewer.