From 138d46c69f6fd098cff2ddc8731d077c7316713a Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Mon, 29 Jun 2020 19:38:55 -0400 Subject: [PATCH] Fix build --- indra/llxml/llcontrol.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/indra/llxml/llcontrol.cpp b/indra/llxml/llcontrol.cpp index 6935179ae41..e71fc498120 100644 --- a/indra/llxml/llcontrol.cpp +++ b/indra/llxml/llcontrol.cpp @@ -34,6 +34,7 @@ #include "llstl.h" +#include "llexception.h" #include "llstring.h" #include "v3math.h" #include "v3dmath.h" @@ -361,9 +362,9 @@ void LLControlVariable::firePropertyChanged(const LLSD &pPreviousValue) { mCommitSignal(this, mValues.back(), pPreviousValue); } - catch (const boost::exception &ex) + catch (const boost::exception&) { - LL_WARNS("LLControlVariable") << getName() << " commit signal threw exception. " << boost::diagnostic_information(ex) << LL_ENDL; + LOG_UNHANDLED_EXCEPTION(getName() + " commit signal threw exception."); } } -- GitLab