From 6ca793f0e9e050dec9085017af1b5a3f7cf3733e Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 30 Sep 2021 11:45:56 +0100 Subject: [PATCH] Remove deprecation from the build specific procedures --- core/strings/builder.odin | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/strings/builder.odin b/core/strings/builder.odin index 5ae7d102a..6952ba088 100644 --- a/core/strings/builder.odin +++ b/core/strings/builder.odin @@ -217,7 +217,6 @@ write_quoted_string :: proc{ write_quoted_string_writer, } -@(deprecated="prefer io.write_quoted_string") write_quoted_string_builder :: proc(b: ^Builder, str: string, quote: byte = '"') -> (n: int) { n, _ = io.write_quoted_string(to_writer(b), str, quote) return @@ -234,7 +233,6 @@ write_encoded_rune :: proc{ write_encoded_rune_writer, } -@(deprecated="prefer io.write_encoded_rune") write_encoded_rune_builder :: proc(b: ^Builder, r: rune, write_quote := true) -> (n: int) { n, _ = io.write_encoded_rune(to_writer(b), r, write_quote) return @@ -252,7 +250,6 @@ write_escaped_rune :: proc{ write_escaped_rune_writer, } -@(deprecated="prefer io.write_escaped_rune") write_escaped_rune_builder :: proc(b: ^Builder, r: rune, quote: byte, html_safe := false) -> (n: int) { n, _ = io.write_escaped_rune(to_writer(b), r, quote, html_safe) return