From: Antony Woods Date: Tue, 29 Oct 2013 08:40:31 +0000 (+0000) Subject: Removed boost namespace from tests so they compile X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=bdccd70f7041425d0740fe155bf6d6f6a0cd46bd;p=clyne%2Fentityx.git Removed boost namespace from tests so they compile --- diff --git a/entityx/Entity_test.cc b/entityx/Entity_test.cc index 0f277a8..c4fdc64 100644 --- a/entityx/Entity_test.cc +++ b/entityx/Entity_test.cc @@ -16,8 +16,7 @@ #include #include "entityx/Entity.h" -// using namespace std; // This will give name space conflicts with boost -using namespace boost; +// using namespace std; using namespace entityx; using std::ostream; diff --git a/entityx/System_test.cc b/entityx/System_test.cc index 75ae6e7..269328a 100644 --- a/entityx/System_test.cc +++ b/entityx/System_test.cc @@ -15,8 +15,7 @@ #include "entityx/System.h" -// using namespace std; // This will give name space conflicts with boost -using namespace boost; +// using namespace std; using namespace entityx; using std::string; diff --git a/entityx/tags/TagsComponent_test.cc b/entityx/tags/TagsComponent_test.cc index 387c3a5..87b99b9 100644 --- a/entityx/tags/TagsComponent_test.cc +++ b/entityx/tags/TagsComponent_test.cc @@ -12,7 +12,6 @@ #include "entityx/tags/TagsComponent.h" using namespace std; -using namespace boost; using namespace entityx; using namespace entityx::tags;