From: clinton Date: Thu, 13 Nov 2008 11:24:51 +0000 (+0000) Subject: Forgot header #ifdef guard X-Git-Tag: release-2.3.1~46 X-Git-Url: https://git.hcoop.net/clinton/bobotpp.git/commitdiff_plain/a89e416c307a73ec890444c2558d1fad70f703eb?hp=0b0626181b08bc06652fa551bfc8cd277c927f11 Forgot header #ifdef guard --- diff --git a/source/BotThreading.H b/source/BotThreading.H index 088542a..f961816 100644 --- a/source/BotThreading.H +++ b/source/BotThreading.H @@ -23,7 +23,12 @@ // structures without forcing pthreads or locking overhead on the // usual single threaded standalone bot +#ifndef BOT_THREADING_H +#define BOT_THREADING_H + +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #ifdef MULTITHREAD #include @@ -54,4 +59,4 @@ public: ~BotLock (); }; - +#endif