Changes in src/Common/Assert.cc [6a625de:bf2438c]
- File:
-
- 1 edited
-
src/Common/Assert.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/Assert.cc
r6a625de rbf2438c 39 39 } 40 40 41 void abort(const char *fmt, ... ) noexcept __attribute__((noreturn, format(printf, 1, 2)));42 void abort(const char *fmt, ... ) noexcept {43 va_list args;44 va_start( args, fmt );45 vfprintf( stderr, fmt, args );46 va_end( args );47 fprintf( stderr, "\n" );48 abort();49 }50 51 41 // Local Variables: // 52 42 // tab-width: 4 //
Note:
See TracChangeset
for help on using the changeset viewer.