From 54a34119f349d531557af9e90d21d04d689ee817 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 26 May 2014 17:53:17 +0200 Subject: Use std::unordered_set --- src/libstore/local-store.hh | 12 ++---------- src/libstore/local.mk | 3 +-- 2 files changed, 3 insertions(+), 12 deletions(-) (limited to 'src/libstore') diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 54331e448a94..e58e6563f1cf 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -1,16 +1,12 @@ #pragma once #include +#include #include "store-api.hh" #include "util.hh" #include "pathlocks.hh" -#if HAVE_TR1_UNORDERED_SET -#include -#endif - - class sqlite3; class sqlite3_stmt; @@ -306,11 +302,7 @@ private: void checkDerivationOutputs(const Path & drvPath, const Derivation & drv); -#if HAVE_TR1_UNORDERED_SET - typedef std::tr1::unordered_set InodeHash; -#else - typedef std::set InodeHash; -#endif + typedef std::unordered_set InodeHash; InodeHash loadInodeHash(); Strings readDirectoryIgnoringInodes(const Path & path, const InodeHash & inodeHash); diff --git a/src/libstore/local.mk b/src/libstore/local.mk index 40cb25dc5fb3..64dbfa3c5b0e 100644 --- a/src/libstore/local.mk +++ b/src/libstore/local.mk @@ -21,8 +21,7 @@ libstore_CXXFLAGS = \ -DNIX_LOG_DIR=\"$(localstatedir)/log/nix\" \ -DNIX_CONF_DIR=\"$(sysconfdir)/nix\" \ -DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \ - -DNIX_BIN_DIR=\"$(bindir)\" \ - -DPACKAGE_VERSION=\"$(PACKAGE_VERSION)\" + -DNIX_BIN_DIR=\"$(bindir)\" $(d)/local-store.cc: $(d)/schema.sql.hh -- cgit 1.4.1