1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 12:41:15 +02:00

rename valmap

This commit is contained in:
Ben Burdette 2022-05-05 15:43:23 -06:00
parent 09fcfee925
commit f400c5466d
2 changed files with 5 additions and 5 deletions

View file

@ -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);