From 2f6e566a32aa32c9b53e3862755132ff96bc6ec8 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 22 Aug 2021 12:57:08 +0100 Subject: [PATCH] Remove the deprecated `fmt.print*_err` procedures --- core/fmt/fmt.odin | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/fmt/fmt.odin b/core/fmt/fmt.odin index 7a5e85354..880707031 100644 --- a/core/fmt/fmt.odin +++ b/core/fmt/fmt.odin @@ -94,11 +94,6 @@ eprintln :: proc(args: ..any, sep := " ") -> int { return fprintln(fd=os.stderr, eprintf :: proc(fmt: string, args: ..any) -> int { return fprintf(os.stderr, fmt, ..args); } -@(deprecated="prefer eprint") print_err :: proc(args: ..any) -> int { return eprint(..args); } -@(deprecated="prefer eprintf") printf_err :: proc(fmt: string, args: ..any) -> int { return eprintf(fmt, ..args); } -@(deprecated="prefer eprintln") println_err :: proc(args: ..any) -> int { return eprintln(..args); } - - // aprint* procedures return a string that was allocated with the current context // They must be freed accordingly aprint :: proc(args: ..any, sep := " ") -> string {