diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-06-01 21:35:39 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-06-01 21:35:39 +0000 |
commit | d04c6851681bc9b89ba98c1644cd62d7fb719ac2 (patch) | |
tree | 87ee3e3b4ed3729e24e3d715ce41ed13c9b70adb /libcxx/test/support/Counter.h | |
parent | b4a4357ecb6a5a716bf1715bd14733a9641de222 (diff) | |
download | bcm5719-llvm-d04c6851681bc9b89ba98c1644cd62d7fb719ac2.tar.gz bcm5719-llvm-d04c6851681bc9b89ba98c1644cd62d7fb719ac2.zip |
Remove trailing whitespace in test suite. Approved by Marshall Clow.
llvm-svn: 271435
Diffstat (limited to 'libcxx/test/support/Counter.h')
-rw-r--r-- | libcxx/test/support/Counter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/support/Counter.h b/libcxx/test/support/Counter.h index 2bc3642f505..eb6e04e72ef 100644 --- a/libcxx/test/support/Counter.h +++ b/libcxx/test/support/Counter.h @@ -13,7 +13,7 @@ #include <functional> // for std::hash struct Counter_base { static int gConstructed; }; - + template <typename T> class Counter : public Counter_base { @@ -27,7 +27,7 @@ public: Counter& operator=(Counter&& rhs) { ++gConstructed; data_ = std::move(rhs.data_); return *this; } #endif ~Counter() { --gConstructed; } - + const T& get() const {return data_;} bool operator==(const Counter& x) const {return data_ == x.data_;} |