/[svn]/linuxsampler/trunk/src/scriptvm/tree.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/scriptvm/tree.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3576 by schoenebeck, Wed Aug 28 12:56:38 2019 UTC revision 3577 by schoenebeck, Wed Aug 28 15:23:23 2019 UTC
# Line 410  void FunctionCall::dump(int level) { Line 410  void FunctionCall::dump(int level) {
410    
411  ExprType_t FunctionCall::exprType() const {  ExprType_t FunctionCall::exprType() const {
412      if (!fn) return EMPTY_EXPR;      if (!fn) return EMPTY_EXPR;
413      return fn->returnType();      FunctionCall* self = const_cast<FunctionCall*>(this);
414        return fn->returnType(dynamic_cast<VMFnArgs*>(&*self->args));
415  }  }
416    
417  VMFnResult* FunctionCall::execVMFn() {  VMFnResult* FunctionCall::execVMFn() {

Legend:
Removed from v.3576  
changed lines
  Added in v.3577

  ViewVC Help
Powered by ViewVC