diff options
Diffstat (limited to 'libcxx/test/utilities/tuple/tuple.tuple/DefaultOnly.h')
-rw-r--r-- | libcxx/test/utilities/tuple/tuple.tuple/DefaultOnly.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/libcxx/test/utilities/tuple/tuple.tuple/DefaultOnly.h b/libcxx/test/utilities/tuple/tuple.tuple/DefaultOnly.h deleted file mode 100644 index bdcf46d19ff..00000000000 --- a/libcxx/test/utilities/tuple/tuple.tuple/DefaultOnly.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef DEFAULTONLY_H -#define DEFAULTONLY_H - -#include <cassert> - -class DefaultOnly -{ - int data_; - - DefaultOnly(const DefaultOnly&); - DefaultOnly& operator=(const DefaultOnly&); -public: - static int count; - - DefaultOnly() : data_(-1) {++count;} - ~DefaultOnly() {data_ = 0; --count;} - - friend bool operator==(const DefaultOnly& x, const DefaultOnly& y) - {return x.data_ == y.data_;} - friend bool operator< (const DefaultOnly& x, const DefaultOnly& y) - {return x.data_ < y.data_;} -}; - -int DefaultOnly::count = 0; - -#endif // DEFAULTONLY_H |