mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-04 20:17:48 +00:00
typedef struct and start removing auto
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user