summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/mod_remove_empty_return-2.cpp
blob: eb949c450f2b1e4f87ac619edf76e9fdb07a53de (plain)
1
2
3
4
5
6
7
8
9
10
namespace ComponentSpec {
void build(Context c)
{
	if (index == NSNotFound) {
		return;
	}

	invokeUpdateInvitees(c, invitees);
}
}