summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Weingärtner <timo@tiwe.de>2011-12-02 20:23:18 +0100
committerTimo Weingärtner <timo@tiwe.de>2011-12-25 18:48:34 +0100
commita40bb6e7fd6e74e8b2d2222bba9421b580577e8e (patch)
treed34a5e2330d53b964d0ec8276177c35ccc84750b
parentcffdf8acae2b5f985eeb81cb6e0a5bbd218b9d32 (diff)
downloadhadori-a40bb6e7fd6e74e8b2d2222bba9421b580577e8e.tar.gz
also use unordered_map for sizes
-rw-r--r--hadori.C3
1 files changed, 1 insertions, 2 deletions
diff --git a/hadori.C b/hadori.C
index 7597530..46ea864 100644
--- a/hadori.C
+++ b/hadori.C
@@ -4,7 +4,6 @@ namespace po = boost::program_options;
#include <string>
#include <vector>
#include <queue>
-#include <map>
#include <unordered_map>
#include <iostream>
#include <sstream>
@@ -57,7 +56,7 @@ void do_link (inode const & i, std::string const & other) {
void handle_file(std::string const & path, struct stat const & s) {
static std::unordered_map<ino_t, inode const> kept;
static std::unordered_map<ino_t, ino_t> to_link;
- static std::multimap<off_t, ino_t> sizes;
+ static std::unordered_multimap<off_t, ino_t> sizes;
debug << "examining " << path << std::endl;
if (kept.count(s.st_ino)) {