aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-09-03 00:01:01 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-09-03 00:01:01 +0000
commitac02ae31d09fcdfb4d92ea61062cf6528744c9c2 (patch)
tree823f55488dfadb2096c0e91a11cc71475bdd6071
parent4ee3b1359f5407ad4bb552bcc1c563970d355017 (diff)
[Author: dmaclach]
Change GTMTestTimer so that we can forward declare test timers using 'struct GTMTestTimer *' without including the header. R=thomasvl DELTA=1 (0 added, 0 deleted, 1 changed)
-rw-r--r--UnitTesting/GTMTestTimer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/UnitTesting/GTMTestTimer.h b/UnitTesting/GTMTestTimer.h
index 1b5b9dc..465f89f 100644
--- a/UnitTesting/GTMTestTimer.h
+++ b/UnitTesting/GTMTestTimer.h
@@ -26,7 +26,7 @@
// Test Timers are not thread safe. Test Timers do NOT check their arguments
// for NULL. You will crash if you pass a NULL argument in.
-typedef struct {
+typedef struct GTMTestTimer {
mach_timebase_info_data_t time_base_info_;
bool running_;
uint64_t start_;