diff options
| author | gingerBill <bill@gingerbill.org> | 2019-02-23 23:21:27 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-02-23 23:21:27 +0000 |
| commit | 2878cd8241d6cbb57a7a2f927be7407d11ad80d8 (patch) | |
| tree | 9c1f961de032d9cda8bd118d833727f8e6334d52 /src/string.cpp | |
| parent | a9ab90bd2488783c3523fa30315f9754937fd52e (diff) | |
New build flag: -define:foo=123
Diffstat (limited to 'src/string.cpp')
| -rw-r--r-- | src/string.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string.cpp b/src/string.cpp index 5f4a28960..39219789f 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -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); |