aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/postal/files/patch-smtp.h
blob: a100a39dc43421700e4d7fa23af876a2358a2726 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- smtp.h.orig	2016-06-30 08:51:27 UTC
+++ smtp.h
@@ -6,7 +6,7 @@
 #include <cstring>
 #include <time.h>
 #include "conf.h"
-#include <tr1/unordered_map>
+#include <unordered_map>
 #include "tcp.h"
 #include "mutex.h"
 
@@ -25,7 +25,7 @@
   }
 };
 
-typedef std::tr1::unordered_map<unsigned long, string *, hash<unsigned long>, eqlng> NAME_MAP;
+typedef std::unordered_map<unsigned long, string *, hash<unsigned long>, eqlng> NAME_MAP;
 
 class smtpData
 {