www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 17170] New: ddoc shows parameters that are not used in function

https://issues.dlang.org/show_bug.cgi?id=17170

          Issue ID: 17170
           Summary: ddoc shows parameters that are not used in function
           Product: D
           Version: D2
          Hardware: x86
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: tools
          Assignee: nobody puremagic.com
          Reporter: timothee.cour2 gmail.com

https://dlang.org/library/std/process/pipe_process.html
shows

shellPath    The path to the shell to use to run the specified program. By
default this is nativeShell.

but shellPath isn't used in pipeProcess:

ProcessPipes pipeProcess( 
  const(char[][]) args, 
  Redirect redirect = cast(Redirect)7, 
  const(string[string]) env = cast(const(string[string]))null, 
  Config config = cast(Config)0, 
  const(char[]) workDir = null 
)  safe; 

ProcessPipes pipeProcess( 
  const(char[]) program, 
  Redirect redirect = cast(Redirect)7, 
  const(string[string]) env = cast(const(string[string]))null, 
  Config config = cast(Config)0, 
  const(char[]) workDir = null 
)  safe;


https://issues.dlang.org/show_bug.cgi?id=13270 is related but different

--
Feb 09 2017