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/ssa_print.cpp | |
| parent | 8ecfca0c9b4d8a8f7c553f99b0bf10142eea88e6 (diff) | |
typedef struct and start removing auto
Diffstat (limited to 'src/ssa_print.cpp')
| -rw-r--r-- | src/ssa_print.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ssa_print.cpp b/src/ssa_print.cpp index 93b27dcae..1ab1d674a 100644 --- a/src/ssa_print.cpp +++ b/src/ssa_print.cpp @@ -1,8 +1,8 @@ -struct ssaFileBuffer { +typedef struct ssaFileBuffer { gbVirtualMemory vm; isize offset; gbFile * output; -}; +} ssaFileBuffer; void ssa_file_buffer_init(ssaFileBuffer *f, gbFile *output) { isize size = 8*gb_virtual_memory_page_size(NULL); |