Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/include/cassert

    r8abee136 r733074e  
    4444
    4545template<typename T, typename U>
    46 static inline __attribute__((nonnull)) T strict_dynamic_cast( const U & src ) {
    47         assert(src);
     46static inline T strict_dynamic_cast( const U & src ) {
    4847        T ret = dynamic_cast<T>(src);
    4948        assertf(ret, "%s", toString(src).c_str());
Note: See TracChangeset for help on using the changeset viewer.