From 138eaab9528a590a5be8d60ff328db7e438da5b0 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Wed, 20 Apr 2016 22:44:34 +0100 Subject: [PATCH] Forgot inclusion guard for the Colour struct. Whoops. --- source/common/colour.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/common/colour.h b/source/common/colour.h index dc3dedf..4907aa7 100644 --- a/source/common/colour.h +++ b/source/common/colour.h @@ -19,6 +19,9 @@ #include #include "text.h" +#ifndef __COMMON_COLOUR_H__ +#define __COMMON_COLOUR_H__ + using namespace std; struct Colour{ @@ -83,4 +86,6 @@ struct Colour{ } -}; \ No newline at end of file +}; + +#endif \ No newline at end of file -- 2.39.2