Fixed a const/non-const inconsistency in NodeVisitor.cpp

Fixed a blank namespace issue in UnitTestFramework.cpp
This commit is contained in:
Don BURNS
2002-11-11 20:18:27 +00:00
parent 35b9317baf
commit 6d1ba6c0f4
2 changed files with 3 additions and 3 deletions

View File

@@ -270,7 +270,7 @@ bool TestRunner::visitEnter( TestSuite* pSuite )
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace{
namespace osgUtx{
struct isSpecified{
@@ -290,7 +290,7 @@ struct isSpecified{
bool TestRunner::visit( TestCase* pTest )
{
if ( std::find_if(_tests.begin(),_tests.end(),
isSpecified(currentPath() + pTest->name() ) ) != _tests.end()) perform( pTest );
osgUtx::isSpecified(currentPath() + pTest->name() ) ) != _tests.end()) perform( pTest );
return !_ctx.shouldStop();
}