You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mp...@apache.org on 2016/11/17 00:33:39 UTC

[2/3] mesos git commit: Tweaked parameter names in libprocess.

Tweaked parameter names in libprocess.

Ensure consistency between declaration and definition. Spotted via
clang-tidy.

Review: https://reviews.apache.org/r/53538/


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

Branch: refs/heads/master
Commit: aa1707157405bc0fd54937781371afee24fa2cad
Parents: 7c7d2f7
Author: Neil Conway <ne...@gmail.com>
Authored: Wed Nov 16 15:41:06 2016 -0800
Committer: Michael Park <mp...@apache.org>
Committed: Wed Nov 16 15:41:28 2016 -0800

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/time.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/aa170715/3rdparty/libprocess/include/process/time.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/time.hpp b/3rdparty/libprocess/include/process/time.hpp
index 554b291..772f22c 100644
--- a/3rdparty/libprocess/include/process/time.hpp
+++ b/3rdparty/libprocess/include/process/time.hpp
@@ -102,7 +102,7 @@ public:
   explicit RFC1123(const Time& _time) : time(_time) {}
 
 private:
-  friend std::ostream& operator<<(std::ostream& out, const RFC1123& format);
+  friend std::ostream& operator<<(std::ostream& out, const RFC1123& formatter);
 
   const Time time;
 };