mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 11:28:25 +00:00
Remove trailing whitespace
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user