From 32cfe9b61570d52d9885b0208fd20de0d351b51e Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Tue, 4 May 2021 12:21:34 +0200 Subject: [PATCH] [dmd-cxx] std.process: Change visibility of searchPathFor to package --- std/process.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/process.d b/std/process.d index 9cbeca8e9..63ec49365 100644 --- a/std/process.d +++ b/std/process.d @@ -887,7 +887,7 @@ version (Windows) @system unittest // Searches the PATH variable for the given executable file, // (checking that it is in fact executable). version (Posix) -private string searchPathFor(in char[] executable) +package(std) string searchPathFor(in char[] executable) @trusted //TODO: @safe nothrow { import std.algorithm.iteration : splitter;