From 0e68f9b93b484612cd304f3a3e1d82bd9de653a7 Mon Sep 17 00:00:00 2001 From: cristy Date: Sat, 31 Dec 2011 03:39:48 +0000 Subject: [PATCH] --- Magick++/lib/Exception.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Magick++/lib/Exception.cpp b/Magick++/lib/Exception.cpp index 27edc0455..67c1afb99 100644 --- a/Magick++/lib/Exception.cpp +++ b/Magick++/lib/Exception.cpp @@ -19,7 +19,8 @@ using namespace std; // Construct with message string Magick::Exception::Exception( const std::string& what_ ) - : _what(what_) + : std::exception(), + _what(what_) { } -- 2.50.1