You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2015/04/26 21:43:41 UTC

[08/10] mesos git commit: Removed from stout.

Removed <stout/tuple.hpp> from stout.

Also required switching from 'tuples::' to 'std::'.

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


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

Branch: refs/heads/master
Commit: 2666e7b9b5509a967e66efc3e5125fde22c83224
Parents: 9d6ffb9
Author: Michael Park <mc...@gmail.com>
Authored: Sun Apr 26 12:25:42 2015 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Sun Apr 26 12:25:43 2015 -0700

----------------------------------------------------------------------
 .../3rdparty/stout/include/Makefile.am          |  1 -
 .../3rdparty/stout/include/stout/tuple.hpp      | 27 --------------------
 2 files changed, 28 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/2666e7b9/3rdparty/libprocess/3rdparty/stout/include/Makefile.am
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/include/Makefile.am b/3rdparty/libprocess/3rdparty/stout/include/Makefile.am
index 26ecb73..79239d7 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/Makefile.am
+++ b/3rdparty/libprocess/3rdparty/stout/include/Makefile.am
@@ -75,7 +75,6 @@ nobase_include_HEADERS =		\
   stout/tests/utils.hpp			\
   stout/thread.hpp			\
   stout/try.hpp				\
-  stout/tuple.hpp			\
   stout/unreachable.hpp			\
   stout/utils.hpp			\
   stout/uuid.hpp			\

http://git-wip-us.apache.org/repos/asf/mesos/blob/2666e7b9/3rdparty/libprocess/3rdparty/stout/include/stout/tuple.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/tuple.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/tuple.hpp
deleted file mode 100644
index 4e7768f..0000000
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/tuple.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-#ifndef __STOUT_TUPLE_HPP__
-#define __STOUT_TUPLE_HPP__
-
-#include <tuple>
-
-namespace tuples {
-
-using std::tuple;
-using std::make_tuple;
-using std::get;
-
-} // namespace tuples {
-
-#endif // __STOUT_TUPLE_HPP__