From 8bbe117e6b6bf450c73238a10cdc30757761fd00 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 18 Nov 2023 18:39:49 -0700 Subject: [PATCH] add preprocessor guard clauses --- gtk2_ardour/cue_editor.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gtk2_ardour/cue_editor.h b/gtk2_ardour/cue_editor.h index a612c8c840..bddc655a39 100644 --- a/gtk2_ardour/cue_editor.h +++ b/gtk2_ardour/cue_editor.h @@ -16,6 +16,9 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifndef __gtk_ardour_cue_editor_h__ +#define __gtk_ardour_cue_editor_h__ + #include "editing.h" #include "editing_context.h" @@ -100,3 +103,5 @@ class CueEditor : public EditingContext void reset_x_origin_to_follow_playhead (); }; + +#endif /* __gtk_ardour_cue_editor_h__ */