1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 23:11:16 +02:00

Turn mkString(Symbol) into a method

This commit is contained in:
Eelco Dolstra 2022-01-04 19:09:40 +01:00
parent ed93aec3c3
commit ca5baf2392
3 changed files with 11 additions and 14 deletions

View file

@ -112,7 +112,7 @@ struct ExprString : Expr
{
Symbol s;
Value v;
ExprString(const Symbol & s) : s(s) { mkString(v, s); };
ExprString(const Symbol & s) : s(s) { v.mkString(s); };
COMMON_METHODS
Value * maybeThunk(EvalState & state, Env & env);
};