Changeset 402 for trunk/src/stl/assert.cc
- Timestamp:
- 06/13/15 21:51:27 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/stl/assert.cc
r396 r402 31 31 extern "C" { 32 32 extern void __assert(const char *, const char *, unsigned int, const char *) 33 throw()__attribute__ ((__noreturn__));33 __attribute__ ((__noreturn__)); 34 34 } 35 35 # else 36 36 extern "C" { 37 37 extern void __assert_fail(const char *, const char *, unsigned int, const char *) 38 throw()__attribute__ ((__noreturn__));38 __attribute__ ((__noreturn__)); 39 39 } 40 40 # endif 41 void nv_internal_assert( const char * assertion, const char * file, unsigned int line, const char * function )41 __attribute__( ( __noreturn__ ) ) void nv_internal_assert( const char * assertion, const char * file, unsigned int line, const char * function ) 42 42 { 43 43 # if NV_COMPILER == NV_CLANG
Note: See TracChangeset
for help on using the changeset viewer.