C++11 tidying.
[dcpomatic.git] / src / lib / trusted_device.cc
index 5849b8fd22f7d400e1336fa695f823403a119743..8bfbc34f066e18abf32eb3a7e8a10fef55eb4087 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "trusted_device.h"
 
+
 using std::string;
 
+
 TrustedDevice::TrustedDevice (string thumbprint)
        : _thumbprint (thumbprint)
 {
 
 }
 
+
 TrustedDevice::TrustedDevice (dcp::Certificate certificate)
        : _certificate (certificate)
 {
 
 }
 
+
 string
 TrustedDevice::as_string () const
 {
@@ -44,6 +49,7 @@ TrustedDevice::as_string () const
        return *_thumbprint;
 }
 
+
 string
 TrustedDevice::thumbprint () const
 {