From f7ea9abc732f925fdf1604d275d659c790ce304b Mon Sep 17 00:00:00 2001 From: Ell Date: Thu, 5 Apr 2018 13:41:36 -0400 Subject: [PATCH] app: add include guards to gimppatincore-loops.h --- app/paint/gimppaintcore-loops.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/paint/gimppaintcore-loops.h b/app/paint/gimppaintcore-loops.h index 45c48d62f6..746d2a59ea 100644 --- a/app/paint/gimppaintcore-loops.h +++ b/app/paint/gimppaintcore-loops.h @@ -15,6 +15,10 @@ * along with this program. If not, see . */ +#ifndef __GIMP_PAINT_CORE_LOOPS_H__ +#define __GIMP_PAINT_CORE_LOOPS_H__ + + void combine_paint_mask_to_canvas_mask (const GimpTempBuf *paint_mask, gint mask_x_offset, gint mask_y_offset, @@ -52,3 +56,6 @@ void mask_components_onto (GeglBuffer *src_buffer, GeglRectangle *roi, GimpComponentMask mask, gboolean linear_mode); + + +#endif /* __GIMP_PAINT_CORE_LOOPS_H__ */