diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-17 12:01:53 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-17 12:01:53 +0100 |
| commit | 2deb2f8eebc42dd52ef8b78811c59e1b07f54f21 (patch) | |
| tree | 6450f88b93b155bd1db798ee11f8ac03e7cc1f84 /src/build_settings.cpp | |
| parent | 3fa398ec43ddc6fc40562087fd8ab87dc5292499 (diff) | |
Declaration grouping uses () rather than {}; Fix some problem with compilation on *nix
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 68e8ec372..8d397705e 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -88,7 +88,7 @@ String odin_root_dir(void) { String odin_root_dir(void) { String path = global_module_path; - Array(char) path_buf; + Array<char> path_buf; isize len, i; gbTempArenaMemory tmp; wchar_t *text; |