Added std:: infront of cout and endl.

This commit is contained in:
Robert Osfield
2002-08-28 17:37:12 +00:00
parent ebb8a635d2
commit 4c762829f2

View File

@@ -3,14 +3,14 @@
int main( int /*argc*/, char** /*argv*/ )
{
// cout<<"***** Qualified Tests ******"<<endl;
// std::cout<<"***** Qualified Tests ******"<<std::endl;
//
// osgUtx::QualifiedTestPrinter printer;
// osgUtx::TestGraph::instance().root()->accept( printer );
//
// std::cout<<endl;
cout<<endl;
cout<<"****** Running tests ******"<<endl;
std::cout<<"****** Running tests ******"<<std::endl;
// Global Data or Context
osgUtx::TestContext ctx;