Skip to content

Commit 200c68f

Browse files
fcneufjengelh
authored andcommitted
ews: place member initializers on separate line after function head
1 parent 6608810 commit 200c68f

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

exch/ews/serialization.cpp

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,10 +237,12 @@ sTime::sTime(const XMLElement *xml)
237237
throw DeserializationError(E3042(xml->Name(), xml->GetText()));
238238
}
239239

240-
sTimePoint::sTimePoint(const tinyxml2::XMLAttribute *xml) : sTimePoint(xml->Value())
240+
sTimePoint::sTimePoint(const tinyxml2::XMLAttribute *xml) :
241+
sTimePoint(xml->Value())
241242
{}
242243

243-
sTimePoint::sTimePoint(const tinyxml2::XMLElement *xml) : sTimePoint(xml->GetText())
244+
sTimePoint::sTimePoint(const tinyxml2::XMLElement *xml) :
245+
sTimePoint(xml->GetText())
244246
{}
245247

246248
void sTimePoint::serialize(XMLElement *xml) const
@@ -373,7 +375,8 @@ void tBaseObjectChangedEvent::serialize(tinyxml2::XMLElement *xml) const
373375
XMLDUMPT(ParentFolderId);
374376
}
375377

376-
tBasePagingType::tBasePagingType(const tinyxml2::XMLElement *xml) : XMLINITA(MaxEntriesReturned)
378+
tBasePagingType::tBasePagingType(const tinyxml2::XMLElement *xml) :
379+
XMLINITA(MaxEntriesReturned)
377380
{}
378381

379382
tBasePermission::tBasePermission(const tinyxml2::XMLElement *xml) :
@@ -1479,7 +1482,8 @@ void tMovedCopiedEvent::serialize(tinyxml2::XMLElement *xml) const
14791482
XMLDUMPT(OldParentFolderId);
14801483
}
14811484

1482-
tPath::tPath(const XMLElement *xml) : Base(fromXMLNodeDispatch<Base>(xml))
1485+
tPath::tPath(const XMLElement *xml) :
1486+
Base(fromXMLNodeDispatch<Base>(xml))
14831487
{}
14841488

14851489
tPermission::tPermission(const tinyxml2::XMLElement *xml) :
@@ -1537,7 +1541,8 @@ tSerializableTimeZone::tSerializableTimeZone(const tinyxml2::XMLElement *xml) :
15371541
XMLINIT(Bias), XMLINIT(StandardTime), XMLINIT(DaylightTime)
15381542
{}
15391543

1540-
tSetFolderField::tSetFolderField(const tinyxml2::XMLElement *xml) : tChangeDescription(xml)
1544+
tSetFolderField::tSetFolderField(const tinyxml2::XMLElement *xml) :
1545+
tChangeDescription(xml)
15411546
{
15421547
for (const tinyxml2::XMLElement *child = xml->FirstChildElement();
15431548
child != nullptr; child = child->NextSiblingElement())
@@ -1550,7 +1555,8 @@ tSetFolderField::tSetFolderField(const tinyxml2::XMLElement *xml) : tChangeDescr
15501555
throw InputError(E3177);
15511556
}
15521557

1553-
tSetItemField::tSetItemField(const tinyxml2::XMLElement *xml) : tChangeDescription(xml)
1558+
tSetItemField::tSetItemField(const tinyxml2::XMLElement *xml) :
1559+
tChangeDescription(xml)
15541560
{
15551561
for (const tinyxml2::XMLElement *child = xml->FirstChildElement();
15561562
child != nullptr; child = child->NextSiblingElement())

0 commit comments

Comments
 (0)