diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-25 01:13:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-25 01:13:54 +0100 |
| commit | 04889748a0e78a163b2268e794144cd71e880264 (patch) | |
| tree | 21c57339a3abaa0691d75553362a14889388d10b /src/lib/font.cc | |
| parent | 996886d220feec5299b66bd2a3bfe916c2c7ae39 (diff) | |
White space: film.{cc,h} font.{cc,h}
Diffstat (limited to 'src/lib/font.cc')
| -rw-r--r-- | src/lib/font.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/font.cc b/src/lib/font.cc index 246d3eeb8..f2b63bbc0 100644 --- a/src/lib/font.cc +++ b/src/lib/font.cc @@ -32,8 +32,8 @@ using boost::optional; using namespace dcpomatic; -Font::Font (cxml::NodePtr node) - : _id (node->string_child("Id")) +Font::Font(cxml::NodePtr node) + : _id(node->string_child("Id")) { for (auto i: node->node_children("File")) { string variant = i->optional_string_attribute("Variant").get_value_or("Normal"); @@ -73,7 +73,7 @@ Font::as_xml(xmlpp::Element* element) bool -dcpomatic::operator== (Font const & a, Font const & b) +dcpomatic::operator==(Font const & a, Font const & b) { if (a.id() != b.id()) { return false; @@ -89,14 +89,14 @@ dcpomatic::operator== (Font const & a, Font const & b) bool -dcpomatic::operator!= (Font const & a, Font const & b) +dcpomatic::operator!=(Font const & a, Font const & b) { return !(a == b); } optional<dcp::ArrayData> -Font::data () const +Font::data() const { if (_content.data) { return _content.data; |
