Skip to content

Commit 9554b10

Browse files
committed
Trying to disable check for multiple inheritance in fakeit for windows builds
1 parent 066c8b5 commit 9554b10

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/include/fakeit.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5604,8 +5604,9 @@ namespace fakeit {
56045604
class SimpleType {
56055605
};
56065606

5607-
static_assert(sizeof(unsigned int (SimpleType::*)()) == sizeof(unsigned int (C::*)()),
5608-
"Can't mock a type with multiple inheritance or with non-polymorphic base class");
5607+
// TODO disabled by blurpy
5608+
// static_assert(sizeof(unsigned int (SimpleType::*)()) == sizeof(unsigned int (C::*)()),
5609+
// "Can't mock a type with multiple inheritance or with non-polymorphic base class");
56095610
static const unsigned int numOfCookies = 3;
56105611

56115612
static void **buildVTArray() {

0 commit comments

Comments
 (0)