summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-09-10 23:37:16 +0200
committerCarl Hetherington <cth@carlh.net>2020-09-11 01:03:42 +0200
commit759ebfc9322cda595a793be004e086389229e65d (patch)
tree5720bd92535279a86faa1db05b8666c461a466e2 /src/types.h
parent17612efe9039ba2074299b5423cb7b927efd24a2 (diff)
Add EqualityOptions option to ignore differences in LoadFont nodes.
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h
index 8297dbcc..c600b790 100644
--- a/src/types.h
+++ b/src/types.h
@@ -206,6 +206,7 @@ struct EqualityOptions
, reel_annotation_texts_can_differ (false)
, reel_hashes_can_differ (false)
, issue_dates_can_differ (false)
+ , load_font_nodes_can_differ (false)
, keep_going (false)
{}
@@ -223,6 +224,7 @@ struct EqualityOptions
bool reel_hashes_can_differ;
/** true if IssueDate nodes can differ */
bool issue_dates_can_differ;
+ bool load_font_nodes_can_differ;
bool keep_going;
};