|
|
|
@ -35,6 +35,8 @@ void Foo::setNoParams()
@@ -35,6 +35,8 @@ void Foo::setNoParams()
|
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const int Foo::rename; |
|
|
|
|
|
|
|
|
|
const Foo& Bar::operator[](int i) const |
|
|
|
|
{ |
|
|
|
|
return m_foo; |
|
|
|
@ -144,6 +146,10 @@ Bar Bar::operator ++(int i)
@@ -144,6 +146,10 @@ Bar Bar::operator ++(int i)
|
|
|
|
|
return bar; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ForceCreationOfInterface::ForceCreationOfInterface() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int Baz::takesQux(const Qux& qux) |
|
|
|
|
{ |
|
|
|
|
return qux.farAwayFunc(); |
|
|
|
@ -295,6 +301,11 @@ void P::setIsBool(bool value)
@@ -295,6 +301,11 @@ void P::setIsBool(bool value)
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void TestDestructors::InitMarker() |
|
|
|
|
{ |
|
|
|
|
Marker = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int TestDestructors::Marker = 0; |
|
|
|
|
|
|
|
|
|
TestCopyConstructorVal::TestCopyConstructorVal() |
|
|
|
@ -453,6 +464,10 @@ void HasPrivateOverrideBase::privateOverride(int i)
@@ -453,6 +464,10 @@ void HasPrivateOverrideBase::privateOverride(int i)
|
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
HasPrivateOverride::HasPrivateOverride() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void HasPrivateOverride::privateOverride(int i) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
@ -620,10 +635,22 @@ TestParamToInterfacePass::TestParamToInterfacePass() : TestParamToInterfacePassB
@@ -620,10 +635,22 @@ TestParamToInterfacePass::TestParamToInterfacePass() : TestParamToInterfacePassB
|
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
HasProtectedVirtual::HasProtectedVirtual() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void HasProtectedVirtual::protectedVirtual() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
InheritanceBuffer::InheritanceBuffer() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
InheritsProtectedVirtualFromSecondaryBase::InheritsProtectedVirtualFromSecondaryBase() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void InheritsProtectedVirtualFromSecondaryBase::protectedVirtual() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|