C++11 tidying.
[dcpomatic.git] / src / lib / kdm_recipient.cc
index d05192ac675111f3a8f46ad3dbe49d6cbe7d606c..cde41e22d86162b158f6233a98a76141aa0a102a 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "kdm_recipient.h"
 
+
 KDMRecipient::KDMRecipient (cxml::ConstNodePtr node)
        : name (node->string_child("Name"))
-       , notes (node->optional_string_child("Notes").get_value_or (""))
+       , notes (node->optional_string_child("Notes").get_value_or(""))
 {
        if (node->optional_string_child("Certificate")) {
                recipient = dcp::Certificate (node->string_child("Certificate"));