Skip to content

Commit 1d5b986

Browse files
committed
Added missing test case for 24bdec8.
1 parent 462bb5b commit 1d5b986

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/Common/Common.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -837,3 +837,9 @@ class DLL_API DerivedClassVirtual : public BaseClassVirtual
837837
public:
838838
virtual int retInt();
839839
};
840+
841+
namespace boost
842+
{
843+
template <class T> struct is_member_pointer_cv { static const bool value = false; };
844+
template <class T, class U>struct is_member_pointer_cv<T U::*> { static const bool value = true; };
845+
}

0 commit comments

Comments
 (0)