diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2015-07-03 09:57:02 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2015-07-03 09:57:02 -0400 |
commit | d34476359e59a1902b1498fbed94daca3d20bff1 (patch) | |
tree | 168235915da620df8bfc8861abbd50a3964e9782 | |
parent | f90023fc0b3b61fd346a2b56e30e5f3c35814192 (diff) |
MAINT-5357: Extract LLErrorEvent to global namespace.
This exception class got inadvertently swept up into the llcoro namespace. Its
LLClassConvention name is intended for use in the global namespace. As there
are no current references, this is a trivial change.
-rwxr-xr-x | indra/llcommon/lleventcoro.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llcommon/lleventcoro.h b/indra/llcommon/lleventcoro.h index 2a60f2b1e0..f1c5dc2fde 100755 --- a/indra/llcommon/lleventcoro.h +++ b/indra/llcommon/lleventcoro.h @@ -236,6 +236,8 @@ waitForEventOn(const LLEventPumpOrPumpName& pump0, const LLEventPumpOrPumpName& */ LLSD errorException(const LLEventWithID& result, const std::string& desc); +} // namespace llcoro + /** * Exception thrown by errorException(). We don't call this LLEventError * because it's not an error in event processing: rather, this exception @@ -256,6 +258,9 @@ private: LLSD mData; }; +namespace llcoro +{ + /** * Like errorException(), save that this trips a fatal error using LL_ERRS * rather than throwing an exception. |