Fixes for VC6 + compressed_pair

[SVN r10059]
This commit is contained in:
John Maddock
2001-05-08 11:13:28 +00:00
parent 230bd5762f
commit 08be220827

View File

@ -284,11 +284,13 @@ struct POD_UDT { int x; };
struct empty_UDT
{
~empty_UDT(){};
empty_UDT& operator=(const empty_UDT&){ return *this; }
bool operator==(const empty_UDT&)const
{ return true; }
};
struct empty_POD_UDT
{
empty_POD_UDT& operator=(const empty_POD_UDT&){ return *this; }
bool operator==(const empty_POD_UDT&)const
{ return true; }
};