Home | History | Annotate | Download | only in unit

Lines Matching refs:any_type

81 struct any_type
85 any_type() : m_data(1) {}
86 any_type(const any_type&) : m_data(2) {}
87 any_type& operator = (const any_type&)
89 ~any_type() { m_data = 0; }
94 any_type any;
95 any_type* any_pointer;
96 any_type const* any_const_pointer;
97 any_type volatile* any_volatile_pointer;
98 any_type const volatile* any_const_volatile_pointer;
176 CPPUNIT_ASSERT( __type2bool<any_type>::_Ret == 1 );