Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Commit

Permalink
removed unneeded const
Browse files Browse the repository at this point in the history
  • Loading branch information
klemens-morgenstern committed Feb 28, 2017
1 parent 9cfab7e commit d561667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/process/detail/posix/executor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace boost { namespace process { namespace detail { namespace posix {

inline int execvpe(const char* filename, char * const arg_list[], char* const env[])
inline int execvpe(const char* filename, char * const arg_list[], char* env[])
{
#if defined(__GLIBC__)
return ::execvpe(filename, arg_list, env);
Expand Down

0 comments on commit d561667

Please sign in to comment.