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 ('> >' → '>>')

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/util/SharedPtr.h

    r10768 r10769  
    343343        For example the @c Functor classes: While a @c Functor* pointer would be managed by
    344344        @c SharedPtr<Functor>, the child class @c FunctorStatic is managed by the class
    345         <tt>SharedChildPtr<FunctorStatic, SharedPtr<Functor> ></tt>.
     345        <tt>SharedChildPtr<FunctorStatic, SharedPtr<Functor>></tt>.
    346346
    347347        The second template argument @a Parent is used as the parent class of
     
    351351        So for example this works:
    352352        @code
    353         SharedChildPtr<FunctorStatic, SharedPtr<Functor> > functorStatic = createFunctor(&MyClass::myStaticFunction);
     353        SharedChildPtr<FunctorStatic, SharedPtr<Functor>> functorStatic = createFunctor(&MyClass::myStaticFunction);
    354354        SharedPtr<Functor> functor = functorStatic;
    355355        @endcode
Note: See TracChangeset for help on using the changeset viewer.