define PAIR_TYPE as std::pair
authorWladimir J. van der Laan <laanwj@gmail.com>
Wed, 1 Jun 2011 15:13:25 +0000 (17:13 +0200)
committerWladimir J. van der Laan <laanwj@gmail.com>
Wed, 1 Jun 2011 15:15:43 +0000 (17:15 +0200)
core/include/util.h

index b1eabd5..eccdbd3 100644 (file)
@@ -65,7 +65,7 @@ typedef unsigned long long  uint64;
 #endif
 
 // This is needed because the foreach macro can't get over the comma in pair<t1, t2>
-#define PAIRTYPE(t1, t2)    pair<t1, t2>
+#define PAIRTYPE(t1, t2)    std::pair<t1, t2>
 
 // Used to bypass the rule against non-const reference to temporary
 // where it makes sense with wrappers such as CFlatData or CTxDB