summaryrefslogtreecommitdiff
path: root/src/context/context_mm.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-06-18 02:44:41 +0000
committerMorgan Deters <mdeters@gmail.com>2011-06-18 02:44:41 +0000
commitd5d73d514946ea4a7f5691f46c4d6b9c2776f59d (patch)
tree68654da6eedf2c05681a5f8df1553fd88d179271 /src/context/context_mm.h
parent0555d96193b6d9c39c26a04941c6087e4465adf0 (diff)
Some fixes inspired by Fedora 15:
* compilation fixes for GCC 4.6.x + ptrdiff_t is now in std:: * fix some make rules that are ok in Make 3.81 but broke in Make 3.82 * look for cxxtestgen.py as well as cxxtestgen.pl, and look for cxxtest headers in /usr/include
Diffstat (limited to 'src/context/context_mm.h')
-rw-r--r--src/context/context_mm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context/context_mm.h b/src/context/context_mm.h
index 71f7041c7..56ef7ab59 100644
--- a/src/context/context_mm.h
+++ b/src/context/context_mm.h
@@ -150,7 +150,7 @@ class ContextMemoryAllocator {
public:
typedef size_t size_type;
- typedef ptrdiff_t difference_type;
+ typedef std::ptrdiff_t difference_type;
typedef T* pointer;
typedef T const* const_pointer;
typedef T& reference;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback