From cd2032f1b3cfa1ae082b7bee3fccc0cb6692ab76 Mon Sep 17 00:00:00 2001 From: Zaal Tonia Date: Fri, 12 Apr 2019 11:41:41 -0400 Subject: [PATCH] Parens inappropriate for macro --- src/addon/manager.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/addon/manager.hpp b/src/addon/manager.hpp index 278d45000a79..1dc0caf46bb0 100644 --- a/src/addon/manager.hpp +++ b/src/addon/manager.hpp @@ -48,14 +48,14 @@ struct invalid_pbl_exception : public std::exception /** Destructor. * Virtual to allow for subclassing. */ - virtual ~invalid_pbl_exception() BOOST_NOEXCEPT (){} + virtual ~invalid_pbl_exception() BOOST_NOEXCEPT {} /** Returns a pointer to the (constant) error description. * @return A pointer to a const char*. The underlying memory * is in posession of the Exception object. Callers must * not attempt to free the memory. */ - virtual const char* what() const BOOST_NOEXCEPT (){ + virtual const char* what() const BOOST_NOEXCEPT { return message.c_str(); } };