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.hh | |
parent | 09fcfee9252920b170e031b397709368a305bbc3 (diff) |
rename valmap
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index f3852e248..22f034e27 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -37,7 +37,7 @@ struct PrimOp const char * doc = nullptr; }; -typedef std::map<std::string, Value *> valmap; +typedef std::map<std::string, Value *> ValMap; struct Env { @@ -47,7 +47,7 @@ struct Env Value * values[0]; }; -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); void copyContext(const Value & v, PathSet & context); |