diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-01-17 19:49:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 19:49:52 +0100 |
commit | fc2443a67caa139fdfb0fa0fccf3d777d736ffe9 (patch) | |
tree | 8266100830cdde723f42e4332658a2ae464f7564 /src/libexpr/eval.hh | |
parent | 008ddef4b08e9bee530a5a4c597c88b344089021 (diff) | |
parent | 72f42093e711db1ab43c920688bb5e59df33935d (diff) |
Merge pull request #5812 from pennae/small-perf-improvements
improve parser performance a bit
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 89814785e..850c5bae6 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -179,8 +179,8 @@ public: Expr * parseExprFromFile(const Path & path, StaticEnv & staticEnv); /* Parse a Nix expression from the specified string. */ - Expr * parseExprFromString(std::string_view s, const Path & basePath, StaticEnv & staticEnv); - Expr * parseExprFromString(std::string_view s, const Path & basePath); + Expr * parseExprFromString(std::string s, const Path & basePath, StaticEnv & staticEnv); + Expr * parseExprFromString(std::string s, const Path & basePath); Expr * parseStdin(); @@ -308,7 +308,7 @@ private: friend struct ExprAttrs; friend struct ExprLet; - Expr * parse(const char * text, FileOrigin origin, const Path & path, + Expr * parse(char * text, size_t length, FileOrigin origin, const Path & path, const Path & basePath, StaticEnv & staticEnv); public: |