diff options
| author | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-04-14 20:42:44 +0000 |
|---|---|---|
| committer | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-04-14 20:42:44 +0000 |
| commit | f5f2b1d2761b1d81c042d51619182c7951fd23aa (patch) | |
| tree | 6f5f08c25af14a3828c219824033823e2f6cd341 /cppunit/TextTestResult.cpp | |
| parent | d10c36e40929fd910197327949cd30d250a33c8a (diff) | |
| download | cppunit-f5f2b1d2761b1d81c042d51619182c7951fd23aa.tar.gz | |
Always use namespace std for strings and vectors.
Diffstat (limited to 'cppunit/TextTestResult.cpp')
| -rw-r--r-- | cppunit/TextTestResult.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppunit/TextTestResult.cpp b/cppunit/TextTestResult.cpp index bc8597b..1b33882 100644 --- a/cppunit/TextTestResult.cpp +++ b/cppunit/TextTestResult.cpp @@ -51,7 +51,7 @@ TextTestResult::printErrors (ostream& stream) int i = 1; - for (vector<TestFailure *>::iterator it = errors ().begin (); it != errors ().end (); ++it) { + for (std::vector<TestFailure *>::iterator it = errors ().begin (); it != errors ().end (); ++it) { TestFailure *failure = *it; Exception *e = failure->thrownException (); @@ -78,7 +78,7 @@ TextTestResult::printFailures (ostream& stream) int i = 1; - for (vector<TestFailure *>::iterator it = failures ().begin (); it != failures ().end (); ++it) { + for (std::vector<TestFailure *>::iterator it = failures ().begin (); it != failures ().end (); ++it) { TestFailure *failure = *it; Exception *e = failure->thrownException (); |
