diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-01-04 19:09:40 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-01-04 19:09:40 +0100 |
commit | ca5baf239277daecef489a415fe157094bd7e799 (patch) | |
tree | 2ee3f83fce26b88ce8690adb6751e28149ee8ae4 /src/libexpr/nixexpr.hh | |
parent | ed93aec3c317e5dc3748b28e451c8eb6df377060 (diff) |
Turn mkString(Symbol) into a method
Diffstat (limited to 'src/libexpr/nixexpr.hh')
-rw-r--r-- | src/libexpr/nixexpr.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/nixexpr.hh b/src/libexpr/nixexpr.hh index aa5a3f332..0a60057e5 100644 --- a/src/libexpr/nixexpr.hh +++ b/src/libexpr/nixexpr.hh @@ -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); }; |