Searched refs:DefaultOnly (Results 1 – 2 of 2) sorted by relevance
13 struct DefaultOnly { struct15 DefaultOnly(DefaultOnly const&) = delete; argument16 DefaultOnly& operator=(DefaultOnly const&) = delete;20 DefaultOnly() : data_(-1) { ++count; } in DefaultOnly() function21 ~DefaultOnly() { data_ = 0; --count; } in ~DefaultOnly() argument23 friend bool operator==(DefaultOnly const& x, DefaultOnly const& y) in operator ==()26 friend bool operator< (DefaultOnly const& x, DefaultOnly const& y) in operator <()30 int DefaultOnly::count = 0;67 hana::tuple<int, char*, std::string, DefaultOnly> t; in main()71 BOOST_HANA_RUNTIME_CHECK(hana::at_c<3>(t) == DefaultOnly()); in main()[all …]
25 struct DefaultOnly { struct26 DefaultOnly() = default;27 DefaultOnly(DefaultOnly const&) = delete;28 DefaultOnly(DefaultOnly&&) = delete;63 hana::pair<DefaultOnly, DefaultOnly> p; in main()