From 89c3b2bf76b419fa696688bc97dfdd7d0114305e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 16 May 2022 21:33:02 +0200 Subject: [PATCH] Add an include guard. --- src/lib/dcpomatic_time_coalesce.h | 8 ++++++++ 1 file changed, 8 insertions(+) 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 @@ -54,3 +58,7 @@ std::list> coalesce (std::list> periods) } + + +#endif + -- 2.30.2