* fix gcc4 build of cppunit library by explicitly spelling out std:: in
the headers and importing the required classes in the implementation files * automatic whitespace cleanup git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30586 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -12,6 +12,9 @@
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
using std::string;
|
||||
using std::vector;
|
||||
|
||||
namespace CppUnit {
|
||||
|
||||
class TestResult;
|
||||
@@ -36,7 +39,7 @@ class TestResult;
|
||||
* control for any tests added to them.
|
||||
*
|
||||
* TestSuites do not register themselves in the TestRegistry.
|
||||
* \see Test
|
||||
* \see Test
|
||||
* \see TestCaller
|
||||
*/
|
||||
|
||||
@@ -59,7 +62,7 @@ public:
|
||||
|
||||
private:
|
||||
TestSuite( const TestSuite &other );
|
||||
TestSuite &operator =( const TestSuite &other );
|
||||
TestSuite &operator =( const TestSuite &other );
|
||||
|
||||
private:
|
||||
vector<Test *> m_tests;
|
||||
|
||||
Reference in New Issue
Block a user