You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jp...@apache.org on 2017/11/10 23:35:47 UTC

[2/2] mesos git commit: Made Envp conversion operator consistent with Argv.

Made Envp conversion operator consistent with Argv.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d11b66a2
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/d11b66a2
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/d11b66a2

Branch: refs/heads/master
Commit: d11b66a2870623fa5b69760afc9baf487bcc0d90
Parents: 2854f3b
Author: James Peach <jp...@apache.org>
Authored: Fri Nov 10 13:39:48 2017 -0800
Committer: James Peach <jp...@apache.org>
Committed: Fri Nov 10 14:54:17 2017 -0800

----------------------------------------------------------------------
 3rdparty/stout/include/stout/os/raw/environment.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/d11b66a2/3rdparty/stout/include/stout/os/raw/environment.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/include/stout/os/raw/environment.hpp b/3rdparty/stout/include/stout/os/raw/environment.hpp
index 51c93f5..2080016 100644
--- a/3rdparty/stout/include/stout/os/raw/environment.hpp
+++ b/3rdparty/stout/include/stout/os/raw/environment.hpp
@@ -182,7 +182,7 @@ public:
     delete[] envp;
   }
 
-  operator char**()
+  operator char**() const
   {
     return envp;
   }