From c17345207f7d1dedb291d63b90d182759f519679 Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Wed, 13 Nov 2013 01:00:10 +0000 Subject: Get rid of extra semicolons in my previous change. DELTA=2 (0 added, 0 deleted, 2 changed) --- UnitTesting/GTMCodeCoverageTestsST.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'UnitTesting') diff --git a/UnitTesting/GTMCodeCoverageTestsST.m b/UnitTesting/GTMCodeCoverageTestsST.m index 6ace55f..a73fdad 100644 --- a/UnitTesting/GTMCodeCoverageTestsST.m +++ b/UnitTesting/GTMCodeCoverageTestsST.m @@ -51,12 +51,12 @@ static int gSuiteCount = 0; } + (void)suiteStarted:(NSNotification *)notification { - #pragma unused (notification); + #pragma unused (notification) gSuiteCount += 1; } + (void)suiteStopped:(NSNotification *)notification { - #pragma unused (notification); + #pragma unused (notification) gSuiteCount -= 1; if (gSuiteCount == 0) { id application = [UIApplication sharedApplication]; -- cgit v1.2.3