[dmd-cxx] std.process: Change visibility of searchPathFor to package

This commit is contained in:
Iain Buclaw 2021-05-04 12:21:34 +02:00 committed by The Dlang Bot
parent e6907ff3e2
commit 32cfe9b615

View file

@ -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;