From 0708f326947181910df3797e435957b55d894245 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Mon, 6 Jul 2009 16:11:03 +0000 Subject: [PATCH] Added bool equations to bootstrap --- chaiscript/chaiscript.hpp | 1 + dispatchkit/bootstrap.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/chaiscript/chaiscript.hpp b/chaiscript/chaiscript.hpp index 87a1942..09fbecb 100644 --- a/chaiscript/chaiscript.hpp +++ b/chaiscript/chaiscript.hpp @@ -127,6 +127,7 @@ namespace chaiscript }; struct BreakLoop { + dispatchkit::Boxed_Value retval; TokenPtr location; BreakLoop(const TokenPtr where) : location(where) { } diff --git a/dispatchkit/bootstrap.hpp b/dispatchkit/bootstrap.hpp index dd42c8c..8f68744 100644 --- a/dispatchkit/bootstrap.hpp +++ b/dispatchkit/bootstrap.hpp @@ -506,6 +506,7 @@ namespace dispatchkit add_basic_constructors(s, "bool"); add_oper_assign(s); + add_oper_assign(s); register_function(s, &to_string, "internal_to_string"); register_function(s, &to_string, "internal_to_string");