Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 7, 2015, 10:23:42 AM (9 years ago)
Author:
landauf
Message:

no space needed anymore between closing template brackets ('> >' → '>>')

Location:
code/branches/cpp11_v2/src/libraries/core/class
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/core/class/Identifiable.h

    r10765 r10769  
    121121
    122122            /// 'Fast map' that holds this-pointers of all derived types
    123             std::vector<std::pair<unsigned int, void*> > objectPointers_;
     123            std::vector<std::pair<unsigned int, void*>> objectPointers_;
    124124    };
    125125}
  • code/branches/cpp11_v2/src/libraries/core/class/Identifier.h

    r10768 r10769  
    321321            void updateConfigValues(bool updateChildren, Identifiable*) const;
    322322
    323             static WeakPtr<ClassIdentifier<T> > classIdentifier_s;
     323            static WeakPtr<ClassIdentifier<T>> classIdentifier_s;
    324324    };
    325325
    326326    template <class T>
    327     WeakPtr<ClassIdentifier<T> > ClassIdentifier<T>::classIdentifier_s;
     327    WeakPtr<ClassIdentifier<T>> ClassIdentifier<T>::classIdentifier_s;
    328328
    329329    /**
  • code/branches/cpp11_v2/src/libraries/core/class/IdentifierManager.h

    r10624 r10769  
    111111            /// Used while creating the object hierarchy to keep track of the identifiers of a newly created object (and all other objects that get created as
    112112            /// a consequence of this, e.g. nested member objects).
    113             std::map<Identifiable*, std::list<const Identifier*> > identifierTraceOfNewObject_;
     113            std::map<Identifiable*, std::list<const Identifier*>> identifierTraceOfNewObject_;
    114114            Identifier* recordTraceForIdentifier_; //!< The identifier for which we want to record the trace of identifiers during object creation. If null, no trace is recorded.
    115115
Note: See TracChangeset for help on using the changeset viewer.