Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 12, 2009, 11:58:01 PM (15 years ago)
Author:
rgrieder
Message:

Merged most of the core4 revisions back to the trunk except for:

  • orxonox_cast
  • all the radical changes in the input library
Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/core/Executor.h

    r3196 r3280  
    3333#include "CorePrereqs.h"
    3434
     35#include <algorithm>
     36#include <string>
     37
    3538#include "util/Debug.h"
    3639#include "util/Math.h"
    37 #include "util/String.h"
     40#include "util/StringUtils.h"
    3841#include "util/SubString.h"
    3942#include "Functor.h"
     
    101104            COUT(5) << tokens[i]; \
    102105        } \
    103         COUT(5) << ") and " << max((int)paramCount - (int)tokens.size(), 0) << " default values ("; \
     106        COUT(5) << ") and " << std::max((int)paramCount - (int)tokens.size(), 0) << " default values ("; \
    104107        for (unsigned int i = tokens.size(); i < paramCount; i++) \
    105108        { \
     
    175178            inline bool hasReturnvalue() const
    176179                { return this->functor_->hasReturnvalue(); }
    177             inline FunctionType getType() const
     180            inline FunctionType::Value getType() const
    178181                { return this->functor_->getType(); }
    179182            inline const MultiType& getReturnvalue() const
     
    201204                    return this->defaultValue_[index];
    202205
    203                 return MT_null;
     206                return MT_Type::Null;
    204207            }
    205208
Note: See TracChangeset for help on using the changeset viewer.