From 33bc4f13d07432b18c55eae11edc84f6b4470f7b Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 9 Nov 2014 15:19:57 -0500 Subject: [PATCH] Context - Creates a set of entities for binary operators. --- src/Context.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Context.cpp b/src/Context.cpp index 2ed260817..0e29f0b00 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -220,6 +220,10 @@ int Context::initialize (int argc, const char** argv) for (op = operators.begin (); op != operators.end (); ++op) cli.entity ("operator", *op); + Eval::getBinaryOperators (operators); + for (op = operators.begin (); op != operators.end (); ++op) + cli.entity ("binary_operator", *op); + //////////////////////////////////////////////////////////////////////////// // // [6] Complete the Context initialization.