By C++11 standard std::is_base_of<B, D> must return true if D is derived from B or if both are the same non-union class. But in VC++ 2010 stl implementation template return true if the type B is a ONLY base class of the type D! Is it a bug ?
At http://msdn.microsoft.com/en-us/library/bb982243(v=vs.100).aspx page in example section
std::is_base_of<base, base> == true
but this does not correspond VC++2010 STL implementation. Although it is consistent with the requirement of the C++11 standard. Where is a bug ?
std::is_base_of<base, base>::valueevaluates totruefor me with VS2010 SP1 and VS2012. May it's a pre-SP1 bug? (I have no easy means to test VS2010 without SP1). Can you post a compilable code that shows the problem? – Michael Burr Dec 11 '12 at 9:11static_assert( is_base_of<int, int>::value, "Invalid std::is_base_or_same implementation");is always error. My VS 2010 version is "10.0.40219.1 SP1Rel" – 23W Dec 11 '12 at 9:27