aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resp.hpp')
-rw-r--r--src/resp.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index c629cc8..2756f23 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -845,9 +845,9 @@ struct CEnv {
CFunc currentFn; ///< Currently compiling function
struct FreeVars : public std::vector<const ASymbol*> {
- FreeVars(ATuple* f, const std::string& n) : fn(f), implName(n) {}
- ATuple* const fn;
- const std::string implName;
+ FreeVars(const ATuple* f, const std::string& n) : fn(f), implName(n) {}
+ const ATuple* const fn;
+ const std::string implName;
int32_t index(const ASymbol* sym) {
const_iterator i = find(begin(), end(), sym);
if (i != end()) {