New build flag: -define:foo=123

This commit is contained in:
gingerBill
2019-02-23 23:21:27 +00:00
parent a9ab90bd24
commit 2878cd8241
4 changed files with 120 additions and 35 deletions

View File

@@ -308,7 +308,6 @@ String directory_from_path(String const &s) {
return substring(s, 0, i);
}
String concatenate_strings(gbAllocator a, String const &x, String const &y) {
isize len = x.len+y.len;
u8 *data = gb_alloc_array(a, u8, len+1);