diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-11-23 11:07:35 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-11-23 11:07:35 +0000 |
| commit | aa2bcb166f2f0356dceb4e9424223ccbd483faf0 (patch) | |
| tree | a5e7b728142864b7bd3d9a6a19cf9ee1b77d249e /src/timings.cpp | |
| parent | 8ecfca0c9b4d8a8f7c553f99b0bf10142eea88e6 (diff) | |
typedef struct and start removing auto
Diffstat (limited to 'src/timings.cpp')
| -rw-r--r-- | src/timings.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/timings.cpp b/src/timings.cpp index c2deedb44..f3bbddb5d 100644 --- a/src/timings.cpp +++ b/src/timings.cpp @@ -1,14 +1,14 @@ -struct TimeStamp { +typedef struct TimeStamp { u64 start; u64 finish; String label; -}; +} TimeStamp; -struct Timings { +typedef struct Timings { TimeStamp total; Array(TimeStamp) sections; u64 freq; -}; +} Timings; u64 win32_time_stamp_time_now(void) { |