summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/Calculator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/dvisvgm/src/Calculator.hpp')
-rw-r--r--dviware/dvisvgm/src/Calculator.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/dviware/dvisvgm/src/Calculator.hpp b/dviware/dvisvgm/src/Calculator.hpp
index f498365e54..cc3b2feb6b 100644
--- a/dviware/dvisvgm/src/Calculator.hpp
+++ b/dviware/dvisvgm/src/Calculator.hpp
@@ -33,7 +33,6 @@ struct CalculatorException : public MessageException {
class Calculator {
public:
- Calculator () : _numValue(0) {}
double eval (std::istream &is);
double eval (const std::string &expr);
void setVariable (const std::string &name, double value) {_variables[name] = value;}
@@ -48,7 +47,7 @@ class Calculator {
private:
std::map<std::string,double> _variables;
- double _numValue;
+ double _numValue=0;
std::string _strValue;
};