aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
Diffstat (limited to 'std')
-rw-r--r--std/mem.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/std/mem.zig b/std/mem.zig
index b3c3e59cec..e99bf9e146 100644
--- a/std/mem.zig
+++ b/std/mem.zig
@@ -44,7 +44,6 @@ pub const Allocator = struct {
/// Alias of create
/// Call destroy with the result
pub fn construct(self: *Allocator, init: var) Error!*@typeOf(init) {
- debug.warn("std.mem.Allocator.construct is deprecated;\n");
return self.create(init);
}