set eol-style to native

This commit is contained in:
Guenter Obiltschnig
2006-10-23 15:42:49 +00:00
parent 70cd05fde3
commit 727688af3e
50 changed files with 5277 additions and 5277 deletions

View File

@@ -1,29 +1,29 @@
//
// TestResult.cpp
//
// $Id: //poco/1.2/CppUnit/src/TestResult.cpp#1 $
//
#include "CppUnit/TestResult.h"
namespace CppUnit {
// Destroys a test result
TestResult::~TestResult()
{
std::vector<TestFailure*>::iterator it;
for (it = _errors.begin(); it != _errors.end(); ++it)
delete *it;
for (it = _failures.begin(); it != _failures.end(); ++it)
delete *it;
delete _syncObject;
}
} // namespace CppUnit
//
// TestResult.cpp
//
// $Id: //poco/1.2/CppUnit/src/TestResult.cpp#1 $
//
#include "CppUnit/TestResult.h"
namespace CppUnit {
// Destroys a test result
TestResult::~TestResult()
{
std::vector<TestFailure*>::iterator it;
for (it = _errors.begin(); it != _errors.end(); ++it)
delete *it;
for (it = _failures.begin(); it != _failures.end(); ++it)
delete *it;
delete _syncObject;
}
} // namespace CppUnit