diff options
author | Ben Burdette <bburdette@protonmail.com> | 2022-05-05 15:43:23 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@protonmail.com> | 2022-05-05 15:43:23 -0600 |
commit | f400c5466d45d342709483799d9b9c2ac24cf967 (patch) | |
tree | f6caee996b8faeb889c09a6f15c3f4e669308e78 /src/libexpr/eval.cc | |
parent | 09fcfee9252920b170e031b397709368a305bbc3 (diff) |
rename valmap
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index ca0eec6e3..659b97658 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -772,7 +772,7 @@ void printEnvBindings(const SymbolTable & st, const Expr & expr, const Env & env printEnvBindings(st, *expr.staticEnv.get(), env, 0); } -void mapStaticEnvBindings(const SymbolTable & st, const StaticEnv & se, const Env & env, valmap & vm) +void mapStaticEnvBindings(const SymbolTable & st, const StaticEnv & se, const Env & env, ValMap & vm) { // add bindings for the next level up first, so that the bindings for this level // override the higher levels. @@ -795,9 +795,9 @@ void mapStaticEnvBindings(const SymbolTable & st, const StaticEnv & se, const En } } -std::unique_ptr<valmap> mapStaticEnvBindings(const SymbolTable & st, const StaticEnv & se, const Env & env) +std::unique_ptr<ValMap> mapStaticEnvBindings(const SymbolTable & st, const StaticEnv & se, const Env & env) { - auto vm = std::make_unique<valmap>(); + auto vm = std::make_unique<ValMap>(); mapStaticEnvBindings(st, se, env, *vm); return vm; } |