Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/Assert.cc

    r6a625de rbf2438c  
    3939}
    4040
    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 
    5141// Local Variables: //
    5242// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.