From d2d88b6371a942d000f48f2d6c437e00e1fd3d9c Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Fri, 6 Jul 2012 20:25:21 +0200 Subject: #include , add header guard to extensible.h Fixes #102 reported by @kshade --- include/extensible.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/extensible.h b/include/extensible.h index 40e820d68..f327cf75c 100644 --- a/include/extensible.h +++ b/include/extensible.h @@ -17,6 +17,11 @@ */ +#ifndef EXTENSIBLE_H +#define EXTENSIBLE_H + +#include + enum SerializeFormat { /** Shown to a human (does not need to be unserializable) */ @@ -185,3 +190,5 @@ class CoreExport StringExtItem : public ExtensionItem void unset(Extensible* container); void free(void* item); }; + +#endif -- cgit v1.2.3