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
+6 -6
View File
@@ -45,22 +45,22 @@ namespace Test
public:
Time();
Time(unsigned int sec, unsigned int usec);
unsigned int seconds() const;
unsigned int microseconds() const;
static Time current();
friend Time operator+(const Time& t1, const Time& t2);
friend Time operator-(const Time& t1, const Time& t2);
friend std::ostream& operator<<(std::ostream& os, const Time& t);
private:
unsigned int _sec;
unsigned int _usec;
};
} // namespace Test
#endif // #ifndef CPPTEST_TIME_H