Cleaned up `using` declarations. Review: https://reviews.apache.org/r/51149/
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5ef0b083 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/5ef0b083 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/5ef0b083 Branch: refs/heads/master Commit: 5ef0b083631bf0eac64a5d91206cb2508be0cfff Parents: ae12bb2 Author: Neil Conway <neil.con...@gmail.com> Authored: Tue Sep 13 19:16:17 2016 +0200 Committer: Michael Park <mp...@apache.org> Committed: Wed Sep 14 15:01:58 2016 +0200 ---------------------------------------------------------------------- src/tests/mesos.cpp | 14 ++++++++------ src/tests/mesos.hpp | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/5ef0b083/src/tests/mesos.cpp ---------------------------------------------------------------------- diff --git a/src/tests/mesos.cpp b/src/tests/mesos.cpp index 539634e..f495fb7 100644 --- a/src/tests/mesos.cpp +++ b/src/tests/mesos.cpp @@ -15,6 +15,7 @@ // limitations under the License. #include <memory> +#include <set> #include <string> #include <mesos/authorizer/authorizer.hpp> @@ -50,18 +51,19 @@ #include "tests/flags.hpp" #include "tests/mesos.hpp" -using std::list; -using std::shared_ptr; -using std::string; -using testing::_; -using testing::Invoke; - using mesos::fetcher::FetcherInfo; using mesos::master::detector::MasterDetector; using mesos::slave::ContainerLogger; +using std::list; +using std::shared_ptr; +using std::string; + +using testing::_; +using testing::Invoke; + using namespace process; #ifdef WITH_NETWORK_ISOLATOR http://git-wip-us.apache.org/repos/asf/mesos/blob/5ef0b083/src/tests/mesos.hpp ---------------------------------------------------------------------- diff --git a/src/tests/mesos.hpp b/src/tests/mesos.hpp index 92d7d94..3d405d8 100644 --- a/src/tests/mesos.hpp +++ b/src/tests/mesos.hpp @@ -17,9 +17,9 @@ #ifndef __TESTS_MESOS_HPP__ #define __TESTS_MESOS_HPP__ +#include <list> #include <map> #include <memory> -#include <set> #include <string> #include <vector>