Changes in / [c4b9fa9:2f8d351]


Ignore:
Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Common/Assert.cc

    rc4b9fa9 r2f8d351  
    1010// Created On       : Thu Aug 18 13:26:59 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Aug 19 17:07:08 2016
    13 // Update Count     : 10
     12// Last Modified On : Mon Nov 20 22:57:18 2023
     13// Update Count     : 11
    1414//
    1515
     
    3939}
    4040
    41 void abort(const char *fmt, ... ) noexcept __attribute__((noreturn, format(printf, 1, 2)));
    42 void abort(const char *fmt, ... ) noexcept {
     41void abort(const char *fmt, ... ) noexcept __attribute__((noreturn, format(printf, 1, 2)));
     42void abort(const char *fmt, ... ) noexcept {
    4343        va_list args;
    4444        va_start( args, fmt );
  • src/include/cassert

    rc4b9fa9 r2f8d351  
    99// Author           : Peter A. Buhr
    1010// Created On       : Thu Aug 18 13:19:26 2016
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Mon Jun  3 13:11:00 2017
    13 // Update Count     : 18
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Mon Nov 20 23:12:34 2023
     13// Update Count     : 19
    1414//
    1515
     
    5353}
    5454
    55 extern void abort(const char *fmt, ...  ) noexcept __attribute__((noreturn, format(printf, 1, 2)));
     55extern void abort(const char *fmt, ... ) noexcept __attribute__((noreturn, format(printf, 1, 2)));
    5656// Local Variables: //
    5757// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.