Browse Source

Added missing test case for 24bdec82b2.

pull/560/head
triton 10 years ago
parent
commit
1d5b9869c8
  1. 6
      tests/Common/Common.h

6
tests/Common/Common.h

@ -837,3 +837,9 @@ class DLL_API DerivedClassVirtual : public BaseClassVirtual @@ -837,3 +837,9 @@ class DLL_API DerivedClassVirtual : public BaseClassVirtual
public:
virtual int retInt();
};
namespace boost
{
template <class T> struct is_member_pointer_cv { static const bool value = false; };
template <class T, class U>struct is_member_pointer_cv<T U::*> { static const bool value = true; };
}
Loading…
Cancel
Save