Remove unnecessary typedef usage

This commit is contained in:
Ginger Bill
2017-06-08 13:08:39 +01:00
parent 2a89d8021c
commit 2b96be0ae8
18 changed files with 349 additions and 365 deletions

View File

@@ -1,5 +1,5 @@
// This stores the information for the specify architecture of this build
typedef struct BuildContext {
struct BuildContext {
// Constants
String ODIN_OS; // target operating system
String ODIN_ARCH; // target architecture
@@ -15,7 +15,7 @@ typedef struct BuildContext {
String llc_flags;
String link_flags;
bool is_dll;
} BuildContext;
};
gb_global BuildContext build_context = {0};