From 85335a5a0cd9ab2d32b2c444923456c4ff9999e9 Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Fri, 10 Jan 2025 11:02:40 +0000 Subject: [PATCH] Remove commented out attributes for `remove` --- std/process.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/process.d b/std/process.d index 7e33cb2e32c..726ef77b372 100644 --- a/std/process.d +++ b/std/process.d @@ -308,7 +308,7 @@ static: multi-threaded programs. See e.g. $(LINK2 https://www.gnu.org/software/libc/manual/html_node/Environment-Access.html#Environment-Access, glibc). */ - void remove(scope const(char)[] name) @trusted //nothrow @nogc + void remove(scope const(char)[] name) @trusted { synchronized (mutex.writer) version (Windows) SetEnvironmentVariableW(name.tempCStringW(), null);