diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-06-29 15:46:21 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-06-29 15:46:21 -0600 |
commit | c484a67914fe16c4f2f6e7779baf4bdfe6405a22 (patch) | |
tree | 7a0f136058ea2504fd6cc70edb89c0d4d80626ba /src/nix/installables.cc | |
parent | 8f81fae116b449ef17561c3574d01574544c798c (diff) |
trace formatting
Diffstat (limited to 'src/nix/installables.cc')
-rw-r--r-- | src/nix/installables.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/installables.cc b/src/nix/installables.cc index 166ba167f..708a0dc88 100644 --- a/src/nix/installables.cc +++ b/src/nix/installables.cc @@ -212,7 +212,7 @@ std::string attrRegex = R"([A-Za-z_][A-Za-z0-9-_+]*)"; static std::regex attrPathRegex(fmt(R"(%1%(\.%1%)*)", attrRegex)); static std::vector<std::shared_ptr<Installable>> parseInstallables( - SourceExprCommand & cmd, ref<Store> store, std::vetor<std::string> ss, bool useDefaultInstallables) + SourceExprCommand & cmd, ref<Store> store, std::vector<std::string> ss, bool useDefaultInstallables) { std::vector<std::shared_ptr<Installable>> result; |