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 2013/04/04 22:57:39 UTC

svn commit: r1464747 - /incubator/mesos/trunk/src/tests/utils.hpp

Author: benh
Date: Thu Apr  4 20:57:39 2013
New Revision: 1464747

URL: http://svn.apache.org/r1464747
Log:
Removed 'using' directive from header.

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

Modified:
    incubator/mesos/trunk/src/tests/utils.hpp

Modified: incubator/mesos/trunk/src/tests/utils.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/tests/utils.hpp?rev=1464747&r1=1464746&r2=1464747&view=diff
==============================================================================
--- incubator/mesos/trunk/src/tests/utils.hpp (original)
+++ incubator/mesos/trunk/src/tests/utils.hpp Thu Apr  4 20:57:39 2013
@@ -85,8 +85,6 @@ extern flags::Flags<logging::Flags, Flag
 
 
 #ifdef __linux__
-using slave::CgroupsIsolator;
-
 // Cgroups hierarchy used by the cgroups related tests.
 const static std::string TEST_CGROUPS_HIERARCHY = "/tmp/mesos_test_cgroup";
 
@@ -163,7 +161,7 @@ class IsolatorTest : public MesosTest
 
 #ifdef __linux__
 template <>
-class IsolatorTest<CgroupsIsolator> : public MesosTest
+class IsolatorTest<slave::CgroupsIsolator> : public MesosTest
 {
 public:
   static void SetUpTestCase()