summaryrefslogtreecommitdiff
path: root/src/context/context_mm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context_mm.h')
-rw-r--r--src/context/context_mm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context/context_mm.h b/src/context/context_mm.h
index 99b448cf2..673fb9098 100644
--- a/src/context/context_mm.h
+++ b/src/context/context_mm.h
@@ -118,7 +118,7 @@ public:
/**
* Destructor - deletes all memory in all regions
*/
- ~ContextMemoryManager() throw();
+ ~ContextMemoryManager();
/**
* Allocate size bytes from the current region
@@ -161,7 +161,7 @@ public:
ContextMemoryAllocator(ContextMemoryManager* mm) throw() : d_mm(mm) {}
template <class U>
ContextMemoryAllocator(const ContextMemoryAllocator<U>& alloc) throw() : d_mm(alloc.getCMM()) {}
- ~ContextMemoryAllocator() throw() {}
+ ~ContextMemoryAllocator() {}
ContextMemoryManager* getCMM() const { return d_mm; }
T* address(T& v) const { return &v; }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback