File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1313#include < chrono>
1414#include < cstddef>
1515#include < cstdio>
16+ #include < ctime>
1617#include < exception>
1718#include < iomanip>
1819#include < memory>
1920#include < sstream>
21+ #include < stdexcept>
2022#include < string>
2123#include < vector>
2224
Original file line number Diff line number Diff line change 1111#include < algorithm>
1212#include < cctype>
1313#include < cstddef>
14+ #include < cstdint>
1415#include < cmath>
1516#include < exception>
1617#include < functional>
@@ -676,8 +677,8 @@ class Expression {
676677class VariableExpr : public Expression {
677678 std::string name;
678679public:
679- VariableExpr (const Location & location , const std::string& n)
680- : Expression(location ), name(n) {}
680+ VariableExpr (const Location & loc , const std::string& n)
681+ : Expression(loc ), name(n) {}
681682 std::string get_name () const { return name; }
682683 Value do_evaluate (const std::shared_ptr<Context> & context) const override {
683684 if (!context->contains (name)) {
You can’t perform that action at this time.
0 commit comments