summaryrefslogtreecommitdiffstats
path: root/src/CBot/CBot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/CBot.h')
-rw-r--r--src/CBot/CBot.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/CBot/CBot.h b/src/CBot/CBot.h
index 53a5633..8886308 100644
--- a/src/CBot/CBot.h
+++ b/src/CBot/CBot.h
@@ -1009,13 +1009,14 @@ public:
// an instruction block { .... }
class CBotBlock : public CBotInstr
{
-private:
-
public:
static
CBotInstr* Compile(CBotToken* &p, CBotCStack* pStack, bool bLocal = true);
static
CBotInstr* CompileBlkOrInst(CBotToken* &p, CBotCStack* pStack, bool bLocal = false);
+private:
+ CBotBlock();
+ CBotBlock(const CBotBlock &);
};