diff options
author | Vincent Ambo <mail@tazj.in> | 2020-08-21T02·23+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-08-21T03·55+0000 |
commit | 7edbe59c6c70cd085fc68c4317c3a71a40ac21e5 (patch) | |
tree | b036747e1c9615c2abbd58560353e704d51bc922 /third_party/nix/src/libstore/local-store.hh | |
parent | 674d921202754661bfcc02ef8fe40ade227349cb (diff) |
style(tvix): Replace remaining typedefs with using statements r/1702
Change (mostly) created via: fd . -e hh -e cc | parallel clang-tidy -p ~/builds/nix --fix "'--checks=-*,modernize-use-using'" Change-Id: I90ad6e64a5399f2005dfb9956074ec51c2c78cea Reviewed-on: https://cl.tvl.fyi/c/depot/+/1830 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'third_party/nix/src/libstore/local-store.hh')
-rw-r--r-- | third_party/nix/src/libstore/local-store.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/third_party/nix/src/libstore/local-store.hh b/third_party/nix/src/libstore/local-store.hh index 669b878b6601..193050e538b2 100644 --- a/third_party/nix/src/libstore/local-store.hh +++ b/third_party/nix/src/libstore/local-store.hh @@ -172,7 +172,7 @@ class LocalStore : public LocalFSStore { private: typedef std::shared_ptr<AutoCloseFD> FDPtr; - typedef std::list<FDPtr> FDs; + using FDs = std::list<FDPtr>; void findTempRoots(FDs& fds, Roots& roots, bool censor); @@ -270,7 +270,7 @@ class LocalStore : public LocalFSStore { void checkDerivationOutputs(const Path& drvPath, const Derivation& drv); - typedef std::unordered_set<ino_t> InodeHash; + using InodeHash = std::unordered_set<ino_t>; InodeHash loadInodeHash(); static Strings readDirectoryIgnoringInodes(const Path& path, @@ -295,8 +295,8 @@ class LocalStore : public LocalFSStore { friend class SubstitutionGoal; }; -typedef std::pair<dev_t, ino_t> Inode; -typedef std::set<Inode> InodesSeen; +using Inode = std::pair<dev_t, ino_t>; +using InodesSeen = std::set<Inode>; /* "Fix", or canonicalise, the meta-data of the files in a store path after it has been built. In particular: |