diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-01 17:13:25 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-01 17:15:43 +0200 |
commit | 9aef9bca3de748870d96d68c74fc423298b9829e (patch) | |
tree | 02606b173516345ae9189010a2b1bf0b6f924e98 /core/include/util.h | |
parent | f96681c5e440e1ebbcb8c79d868a14c2c51c5298 (diff) |
define PAIR_TYPE as std::pair
Diffstat (limited to 'core/include/util.h')
-rw-r--r-- | core/include/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/util.h b/core/include/util.h index b1eabd52d5..eccdbd372d 100644 --- a/core/include/util.h +++ b/core/include/util.h @@ -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 |