diff options
author | Callum Prentice <callum@gmail.com> | 2017-07-12 10:56:23 -0700 |
---|---|---|
committer | Callum Prentice <callum@gmail.com> | 2017-07-12 10:56:23 -0700 |
commit | c6c7c7c71da48b60557dbc4b653398dd6343b6fc (patch) | |
tree | 6711858f93cb0353d44568c4531ba8392990cea2 /indra/llcommon | |
parent | 07185d300d7879fc4d8d268210fa2c440efe02f4 (diff) | |
parent | 83cda57b10e1416f2d104941f862f598653c42cb (diff) |
Automated merge with tip of viewer64
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llassettype.h | 2 | ||||
-rw-r--r-- | indra/llcommon/llerror.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llassettype.h b/indra/llcommon/llassettype.h index 3a4b5dad18..b849be9f16 100644 --- a/indra/llcommon/llassettype.h +++ b/indra/llcommon/llassettype.h @@ -152,7 +152,7 @@ public: static bool lookupIsAssetFetchByIDAllowed(EType asset_type); // the asset allows direct download static bool lookupIsAssetIDKnowable(EType asset_type); // asset data can be known by the viewer - + static const std::string& badLookup(); // error string when a lookup fails protected: diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 2ddb3edbdd..cfca42809a 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -572,7 +572,7 @@ namespace LLError mFunctionString += std::string(mFunction) + ":"; for (size_t i = 0; i < mTagCount; i++) { - mTagString += std::string("#") + mTags[i] + ((i == mTagCount - 1) ? "" : ","); + mTagString += std::string("#") + mTags[i] + ((i == mTagCount - 1) ? " " : ","); } } |