diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-10-21 17:49:16 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-10-21 17:49:16 +0200 |
commit | d77970fde7fac66cf8c5cdb7688906ba2f5d5362 (patch) | |
tree | 1728327a9c0994357bbb73f34a25a61054d69eb1 /src/nix/hash.cc | |
parent | 0abb3ad53795aa3a4792d30e5721a337f0eddfb7 (diff) |
Fix build
Diffstat (limited to 'src/nix/hash.cc')
-rw-r--r-- | src/nix/hash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/hash.cc b/src/nix/hash.cc index 9c06e6116..53a9fd204 100644 --- a/src/nix/hash.cc +++ b/src/nix/hash.cc @@ -15,7 +15,7 @@ struct CmdHash : Command bool truncate = false; HashType ht = htSHA256; std::vector<std::string> paths; - std::experimental::optional<std::string> modulus; + std::optional<std::string> modulus; CmdHash(Mode mode) : mode(mode) { |