summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-16 21:33:02 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-16 21:39:14 +0200
commit89c3b2bf76b419fa696688bc97dfdd7d0114305e (patch)
treeeb45764a8c1f81798a031cceff4f4d9d461d42a6
parent78189e9211907aee322f647f333ced87c5140247 (diff)
Add an include guard.
-rw-r--r--src/lib/dcpomatic_time_coalesce.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/dcpomatic_time_coalesce.h b/src/lib/dcpomatic_time_coalesce.h
index 015326bdd..6540a8c3c 100644
--- a/src/lib/dcpomatic_time_coalesce.h
+++ b/src/lib/dcpomatic_time_coalesce.h
@@ -19,6 +19,10 @@
*/
+#ifndef DCPOMATIC_TIME_COALESCE_H
+#define DCPOMATIC_TIME_COALESCE_H
+
+
#include "dcpomatic_time.h"
#include <iostream>
@@ -54,3 +58,7 @@ std::list<TimePeriod<T>> coalesce (std::list<TimePeriod<T>> periods)
}
+
+
+#endif
+