aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/eval.hh
diff options
context:
space:
mode:
authorBen Burdette <bburdette@protonmail.com>2022-05-05 15:43:23 -0600
committerBen Burdette <bburdette@protonmail.com>2022-05-05 15:43:23 -0600
commitf400c5466d45d342709483799d9b9c2ac24cf967 (patch)
treef6caee996b8faeb889c09a6f15c3f4e669308e78 /src/libexpr/eval.hh
parent09fcfee9252920b170e031b397709368a305bbc3 (diff)
rename valmap
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r--src/libexpr/eval.hh4
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);