From 350a9cdb68ea2b1bab79e5b54c96be8598e8cb77 Mon Sep 17 00:00:00 2001 From: Martin Ettl Date: Sat, 28 Mar 2015 14:24:29 +0100 Subject: [PATCH] Fixed typos in exprtk_debug messages. --- exprtk.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/exprtk.hpp b/exprtk.hpp index 2b2b419..bb9bfdf 100644 --- a/exprtk.hpp +++ b/exprtk.hpp @@ -13465,7 +13465,7 @@ namespace exprtk inline virtual T operator()(const std::vector&) { - exprtk_debug(("ivararg_function::operator() - Operator has not been overriden.\n")); + exprtk_debug(("ivararg_function::operator() - Operator has not been overridden.\n")); return std::numeric_limits::quiet_NaN(); } @@ -13493,28 +13493,28 @@ namespace exprtk // f(i_0,i_1,....,i_N) --> Number inline virtual T operator()(parameter_list_t) { - exprtk_debug(("igeneric_function::operator() - Operator has not been overriden. [1]\n")); + exprtk_debug(("igeneric_function::operator() - Operator has not been overridden. [1]\n")); return std::numeric_limits::quiet_NaN(); } // f(i_0,i_1,....,i_N) --> String inline virtual T operator()(std::string&, parameter_list_t) { - exprtk_debug(("igeneric_function::operator() - Operator has not been overriden. [2]\n")); + exprtk_debug(("igeneric_function::operator() - Operator has not been overridden. [2]\n")); return std::numeric_limits::quiet_NaN(); } // f(psi,i_0,i_1,....,i_N) --> Number inline virtual T operator()(const std::size_t&, parameter_list_t) { - exprtk_debug(("igeneric_function::operator() - Operator has not been overriden. [3]\n")); + exprtk_debug(("igeneric_function::operator() - Operator has not been overridden. [3]\n")); return std::numeric_limits::quiet_NaN(); } // f(psi,i_0,i_1,....,i_N) --> String inline virtual T operator()(const std::size_t&, std::string&, parameter_list_t) { - exprtk_debug(("igeneric_function::operator() - Operator has not been overriden. [4]\n")); + exprtk_debug(("igeneric_function::operator() - Operator has not been overridden. [4]\n")); return std::numeric_limits::quiet_NaN(); }