diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-29 00:52:56 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-29 00:52:56 +0100 |
| commit | 4a293943b92664f0a5687ebdaf44531aa0aa8d79 (patch) | |
| tree | 9514bbb7b9f7917ed8d2096a0f94ce212aefb95a /src/lib/kdm_recipient.cc | |
| parent | 3ee19997fccaaa75b36537e9802985f04d279ede (diff) | |
White space: kdm_recipient.{cc,h}
Diffstat (limited to 'src/lib/kdm_recipient.cc')
| -rw-r--r-- | src/lib/kdm_recipient.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/kdm_recipient.cc b/src/lib/kdm_recipient.cc index 7e7e14324..20ba80d6d 100644 --- a/src/lib/kdm_recipient.cc +++ b/src/lib/kdm_recipient.cc @@ -25,9 +25,9 @@ using boost::optional; -KDMRecipient::KDMRecipient (cxml::ConstNodePtr node) - : name (node->string_child("Name")) - , notes (node->optional_string_child("Notes").get_value_or("")) +KDMRecipient::KDMRecipient(cxml::ConstNodePtr node) + : name(node->string_child("Name")) + , notes(node->optional_string_child("Notes").get_value_or("")) { if (node->optional_string_child("Certificate")) { _recipient = dcp::Certificate(node->string_child("Certificate")); @@ -40,7 +40,7 @@ KDMRecipient::KDMRecipient (cxml::ConstNodePtr node) void -KDMRecipient::as_xml (xmlpp::Element* parent) const +KDMRecipient::as_xml(xmlpp::Element* parent) const { cxml::add_text_child(parent, "Name", name); if (auto const r = recipient()) { |
