From 063207e71f9f36c5ece330a9feec9663218aa78c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Tue, 29 Sep 2020 18:20:36 +0200 Subject: [PATCH] ExprNode::collectEndogenous() is not a virtual method --- src/ExprNode.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ExprNode.hh b/src/ExprNode.hh index 518370f6..e13b7f0e 100644 --- a/src/ExprNode.hh +++ b/src/ExprNode.hh @@ -395,7 +395,7 @@ public: They are added to the set given in argument. Note that model local variables are substituted by their expression in the computation. */ - virtual void collectEndogenous(set<pair<int, int>> &result) const; + void collectEndogenous(set<pair<int, int>> &result) const; class EvalException { -- GitLab