From a89e416c307a73ec890444c2558d1fad70f703eb Mon Sep 17 00:00:00 2001 From: clinton Date: Thu, 13 Nov 2008 11:24:51 +0000 Subject: [PATCH] Forgot header #ifdef guard --- source/BotThreading.H | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- 2.20.1