Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/extra-dependencies/src/commit/13f024c97859cbd99566b3b535fca8c74c99228e/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/30924-sf.2886991.cpp You should set ROOT_URL correctly, otherwise the web may not work correctly.

13 lines
288 B

void log_fmt( log_sev_t sev, const char *fmt, ... ) __attribute__( ( format( printf, 2, 3 ) ) );
#define LOG_FMT( sev, args... ) \
do { if ( log_sev_on( sev ) ) { log_fmt( sev, ## args ); } } while ( 0 )
void foo()
{
try {}
catch ( ... ) // <== HERE
{}
}