[asterisk-scf-commits] asterisk-scf/release/servicediscovery.git branch "master" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Tue Dec 14 09:59:36 CST 2010


branch "master" has been updated
       via  8d4de6c743997ad5f885dbbae2843f0c3f63219e (commit)
      from  4b52680a3a4359525e91b70779993cdf66da9726 (commit)

Summary of changes:
 test/TestComparatorBlocking.cpp |    4 +++-
 test/TestServiceLocator.cpp     |    3 ++-
 2 files changed, 5 insertions(+), 2 deletions(-)


- Log -----------------------------------------------------------------
commit 8d4de6c743997ad5f885dbbae2843f0c3f63219e
Author: Brent Eagles <beagles at digium.com>
Date:   Tue Dec 14 12:29:12 2010 -0330

    More fixes for anonymous namespace compiler issues.

diff --git a/test/TestComparatorBlocking.cpp b/test/TestComparatorBlocking.cpp
index 65c137d..627db32 100644
--- a/test/TestComparatorBlocking.cpp
+++ b/test/TestComparatorBlocking.cpp
@@ -37,7 +37,7 @@
 
 using namespace AsteriskSCF::Core::Discovery::V1;
 
-namespace
+namespace InternalTestNS
 {
 /**
  * A comparator which simply hangs until unblock is called.  The most likely
@@ -190,6 +190,8 @@ protected:
 
 }
 
+using namespace InternalTestNS;
+
 BOOST_FIXTURE_TEST_SUITE(TestComparatorBlocking, Fixture)
 
 /**
diff --git a/test/TestServiceLocator.cpp b/test/TestServiceLocator.cpp
index f93556d..0450919 100644
--- a/test/TestServiceLocator.cpp
+++ b/test/TestServiceLocator.cpp
@@ -29,7 +29,7 @@
 using namespace std;
 using namespace AsteriskSCF::Core::Discovery::V1;
 
-namespace
+namespace InternalTestNS
 {
 /**
  * Test service, for loading into icebox
@@ -232,6 +232,7 @@ struct GlobalIceFixture
 private:
 };
 }
+using namespace InternalTestNS;
 
 BOOST_GLOBAL_FIXTURE(GlobalIceFixture);
 

-----------------------------------------------------------------------


-- 
asterisk-scf/release/servicediscovery.git



More information about the asterisk-scf-commits mailing list