Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10978


Ignore:
Timestamp:
Dec 25, 2015, 11:27:35 PM (8 years ago)
Author:
landauf
Message:

added comments

Location:
code/branches/cpp11_v2/src/libraries/util
Files:
2 edited

Legend:

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

    r10977 r10978  
    181181    inline T zeroise()
    182182    {
     183        // If you reach this code, you abused zeroise()!
    183184        static_assert(sizeof(T) != sizeof(T), "No template specialization available for T");
    184185    }
  • code/branches/cpp11_v2/src/libraries/util/MultiType.h

    r10976 r10978  
    430430            template <typename T> inline void createNewValueContainer(const T& value)
    431431            {
     432                // If you reach this code, you used MultiType with an unsupported type T
    432433                static_assert(sizeof(T) != sizeof(T), "No template specialization available for T");
    433434            }
Note: See TracChangeset for help on using the changeset viewer.