Add missing function bodies to test cases - it suppresses gcc warnings.

This commit is contained in:
jzmaddock
2018-02-08 09:02:05 +00:00
parent e9399adefa
commit 98d6eaf1e9

View File

@ -86,13 +86,13 @@ inline bool operator BOOST_TT_TRAIT_OP (const C&, void*) { return true; }
inline bool operator BOOST_TT_TRAIT_OP (void*, const D&) { return true; }
inline bool operator BOOST_TT_TRAIT_OP (const C&, const D&) { return true; }
struct private_op { private: void operator BOOST_TT_TRAIT_OP (const private_op&); };
struct private_op { private: void operator BOOST_TT_TRAIT_OP (const private_op&) {} };
struct ambiguous_A
{
};
bool operator BOOST_TT_TRAIT_OP (const ambiguous_A&, const ambiguous_A&);
struct ambiguous_B { operator ambiguous_A()const; };
inline bool operator BOOST_TT_TRAIT_OP (const ambiguous_A&, const ambiguous_A&) { return true; }
struct ambiguous_B { operator ambiguous_A()const { return ambiguous_A(); } };
//class internal_private { ret operator BOOST_TT_TRAIT_OP (const internal_private&) const; };