mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Mkclass: Only render setter if not declared pure virtual
This commit is contained in:
parent
b350512b11
commit
caefa58cf6
@ -568,7 +568,8 @@ void ClassCompiler::HandleClass(const Klass& klass, const ClassDebugInfo&)
|
||||
<< "{" << std::endl;
|
||||
|
||||
for (const Field& field : klass.Fields) {
|
||||
m_Impl << "\t" << "Set" << field.GetFriendlyName() << "(" << "GetDefault" << field.GetFriendlyName() << "(), true);" << std::endl;
|
||||
if (!field.PureSetAccessor)
|
||||
m_Impl << "\t" << "Set" << field.GetFriendlyName() << "(" << "GetDefault" << field.GetFriendlyName() << "(), true);" << std::endl;
|
||||
}
|
||||
|
||||
m_Impl << "}" << std::endl << std::endl;
|
||||
|
Loading…
x
Reference in New Issue
Block a user