diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-06-13 14:53:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-13 14:53:41 -0700 |
| commit | 38fc826a5a82bbe11a893be11d3cc1439c477ee8 (patch) | |
| tree | a6f1d07274887a20818b8e9f0798f1f74c318de5 /lib/std/debug.zig | |
| parent | 700ea694b293565ececb7571e4d9613d2c143ca6 (diff) | |
| parent | d884d7050e061c620324aaaabfba507e08cb40f4 (diff) | |
| download | zig-38fc826a5a82bbe11a893be11d3cc1439c477ee8.tar.gz zig-38fc826a5a82bbe11a893be11d3cc1439c477ee8.zip | |
Merge pull request #15957 from BratishkaErik/deprecated-
std.*: remove stuff that was deprecated in older versions
Diffstat (limited to 'lib/std/debug.zig')
| -rw-r--r-- | lib/std/debug.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/std/debug.zig b/lib/std/debug.zig index e0352a26fb..ea0d467085 100644 --- a/lib/std/debug.zig +++ b/lib/std/debug.zig @@ -81,8 +81,6 @@ const PdbOrDwarf = union(enum) { var stderr_mutex = std.Thread.Mutex{}; -pub const warn = @compileError("deprecated; use `std.log` functions for logging or `std.debug.print` for 'printf debugging'"); - /// Print to stderr, unbuffered, and silently returning on failure. Intended /// for use in "printf debugging." Use `std.log` functions for proper logging. pub fn print(comptime fmt: []const u8, args: anytype) void { |
