From d09bb1889f184de32ceb078a815e016502e24279 Mon Sep 17 00:00:00 2001 From: Tim King Date: Thu, 1 Sep 2016 01:28:02 -0700 Subject: Relaxing the throw specifiers for the destructors for Node, TypeNode, the context/ classes, and their subclasses. Fixes compilation issues with clang 3.5 and -std=c++11 'exception specification of overriding function is more lax than base version' for a couple of different classes. --- src/context/context_mm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/context/context_mm.cpp') diff --git a/src/context/context_mm.cpp b/src/context/context_mm.cpp index 0a6b08b6a..2dc2c03bb 100644 --- a/src/context/context_mm.cpp +++ b/src/context/context_mm.cpp @@ -63,7 +63,7 @@ ContextMemoryManager::ContextMemoryManager() : d_indexChunkList(0) { } -ContextMemoryManager::~ContextMemoryManager() throw() { +ContextMemoryManager::~ContextMemoryManager() { // Delete all chunks while(!d_chunkList.empty()) { free(d_chunkList.back()); -- cgit v1.2.3