summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/30924-sf.2886991.cpp
blob: ce5e0b936f02ae897833747e969bd6177cddb061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

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
	{}
}