Remove trailing whitespace

This commit is contained in:
j883376
2013-05-06 13:07:41 -04:00
parent 7a93966158
commit ffcff4aea1
548 changed files with 16397 additions and 16398 deletions
+5 -5
View File
@@ -34,7 +34,7 @@
namespace Test
{
class Suite;
/// \brief Assertment source information.
///
/// Contains information about an assertment point.
@@ -42,17 +42,17 @@ namespace Test
class Source
{
friend class Suite;
public:
Source();
Source(const char* file, unsigned int line, const char* msg);
const std::string& file() const;
unsigned int line() const;
const std::string& message() const;
const std::string& suite() const;
const std::string& test() const;
private:
unsigned int _line;
std::string _file;
@@ -60,7 +60,7 @@ namespace Test
std::string _suite;
std::string _test;
};
} // namespace Test
#endif // #ifndef CPPTEST_SOURCE_H