diff options
| author | gingerBill <bill@gingerbill.org> | 2022-07-14 11:56:13 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-07-14 11:56:13 +0100 |
| commit | 2ae5bf4395ce7070b1301f9bee2b60d461dd28fc (patch) | |
| tree | 2acb6b999a9e1e480991adc2ed7a802c67b89bc2 /core/c | |
| parent | f28547cae1dbc009283e63250de0cdbde68543d7 (diff) | |
| parent | 5332705e3108c35889020b105d0b1f68b6d48644 (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'core/c')
| -rw-r--r-- | core/c/frontend/preprocessor/preprocess.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/c/frontend/preprocessor/preprocess.odin b/core/c/frontend/preprocessor/preprocess.odin index 1db3fafa3..4cfad2c1c 100644 --- a/core/c/frontend/preprocessor/preprocess.odin +++ b/core/c/frontend/preprocessor/preprocess.odin @@ -519,7 +519,7 @@ join_adjacent_string_literals :: proc(cpp: ^Preprocessor, initial_tok: ^Token) { quote_string :: proc(s: string) -> []byte { - b := strings.make_builder(0, len(s)+2) + b := strings.builder_make(0, len(s)+2) io.write_quoted_string(strings.to_writer(&b), s, '"') return b.buf[:] } |