From: Steve Brokenshire Date: Wed, 20 Apr 2016 21:44:34 +0000 (+0100) Subject: Forgot inclusion guard for the Colour struct. Whoops. X-Git-Tag: release-0.02~294 X-Git-Url: http://Server1/repobrowser/?p=xestiacalendar%2F.git;a=commitdiff_plain;h=138eaab9528a590a5be8d60ff328db7e438da5b0 Forgot inclusion guard for the Colour struct. Whoops. --- 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