[muparser] Remove OnDetectVar and Diff

These are unused and useless.
This commit is contained in:
ridiculousfish
2017-12-18 12:02:47 -08:00
parent 2c317a2585
commit 873ea0f0df
5 changed files with 0 additions and 71 deletions

View File

@@ -54,9 +54,6 @@ namespace mu {
virtual void InitFun();
virtual void InitConst();
virtual void InitOprt();
virtual void OnDetectVar(string_type *pExpr, int &nStart, int &nEnd);
ValueOrError Diff(value_type *a_Var, value_type a_fPos, value_type a_fEpsilon = 0) const;
protected:
// Trigonometric functions

View File

@@ -155,8 +155,6 @@ class ParserBase {
virtual void InitConst() = 0;
virtual void InitOprt() = 0;
virtual void OnDetectVar(string_type *pExpr, int &nStart, int &nEnd);
static const char_type *c_DefaultOprt[];
static std::locale s_locale; ///< The locale used by the parser
static bool g_DbgDumpCmdCode;