diff options
Diffstat (limited to 'libcxx/test/std/experimental/task/counted.hpp')
| -rw-r--r-- | libcxx/test/std/experimental/task/counted.hpp | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/libcxx/test/std/experimental/task/counted.hpp b/libcxx/test/std/experimental/task/counted.hpp deleted file mode 100644 index 50658d223cf..00000000000 --- a/libcxx/test/std/experimental/task/counted.hpp +++ /dev/null @@ -1,96 +0,0 @@ -// -*- C++ -*- -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#ifndef _LIBCPP_TEST_EXPERIMENTAL_TASK_COUNTED -#define _LIBCPP_TEST_EXPERIMENTAL_TASK_COUNTED - -class counted -{ -public: - - counted() : id_(nextId_++) - { - ++defaultConstructedCount_; - } - - counted(const counted& other) : id_(other.id_) - { - ++copyConstructedCount_; - } - - counted(counted&& other) : id_(std::exchange(other.id_, 0)) - { - ++moveConstructedCount_; - } - - ~counted() - { - ++destructedCount_; - } - - static void reset() - { - nextId_ = 1; - defaultConstructedCount_ = 0; - copyConstructedCount_ = 0; - moveConstructedCount_ = 0; - destructedCount_ = 0; - } - - static std::size_t active_instance_count() - { - return - defaultConstructedCount_ + - copyConstructedCount_ + - moveConstructedCount_ - - destructedCount_; - } - - static std::size_t copy_constructor_count() - { - return copyConstructedCount_; - } - - static std::size_t move_constructor_count() - { - return moveConstructedCount_; - } - - static std::size_t default_constructor_count() - { - return defaultConstructedCount_; - } - - static std::size_t destructor_count() - { - return destructedCount_; - } - - std::size_t id() const { return id_; } - -private: - std::size_t id_; - - static std::size_t nextId_; - static std::size_t defaultConstructedCount_; - static std::size_t copyConstructedCount_; - static std::size_t moveConstructedCount_; - static std::size_t destructedCount_; - -}; - -#define DEFINE_COUNTED_VARIABLES() \ - std::size_t counted::nextId_; \ - std::size_t counted::defaultConstructedCount_; \ - std::size_t counted::copyConstructedCount_; \ - std::size_t counted::moveConstructedCount_; \ - std::size_t counted::destructedCount_ - -#endif |

