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/cdlist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/context/cdlist.h') diff --git a/src/context/cdlist.h b/src/context/cdlist.h index 4e42c4688..4a5ebfd30 100644 --- a/src/context/cdlist.h +++ b/src/context/cdlist.h @@ -257,7 +257,7 @@ public: /** * Destructor: delete the list */ - ~CDList() throw(AssertionException) { + ~CDList() { this->destroy(); if(this->d_callDestructor) { -- cgit v1.2.3