diff options
author | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-07-16 13:36:01 -0400 |
---|---|---|
committer | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-07-16 13:36:01 -0400 |
commit | 745a03cef5977e3474dcf8ef43cb721a6a7cac8e (patch) | |
tree | 2c6b0a9ad5bcdddbc8ca0fdc1693092d2e726aff /src/libstore/builtins/buildenv.hh | |
parent | 230c9b4329b3d285e57f4cce058c121256187da1 (diff) | |
parent | 048e916f6477acc7e57e1d85e832d3efb42ad3f6 (diff) |
Merge branch 'optional-derivation-output-storepath' of github.com:obsidiansystems/nix into ca-derivation-data-types
Diffstat (limited to 'src/libstore/builtins/buildenv.hh')
-rw-r--r-- | src/libstore/builtins/buildenv.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/builtins/buildenv.hh b/src/libstore/builtins/buildenv.hh index 0a37459b0..73c0f5f7f 100644 --- a/src/libstore/builtins/buildenv.hh +++ b/src/libstore/builtins/buildenv.hh @@ -9,7 +9,7 @@ struct Package { Path path; bool active; int priority; - Package(Path path, bool active, int priority) : path{path}, active{active}, priority{priority} {} + Package(const Path & path, bool active, int priority) : path{path}, active{active}, priority{priority} {} }; typedef std::vector<Package> Packages; |