We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a875b1f commit 367b0c9Copy full SHA for 367b0c9
1 file changed
indra/llcommon/llsdutil.cpp
@@ -503,7 +503,7 @@ bool filter_llsd_with_template(
503
* Helpers for llsd_matches()
504
*****************************************************************************/
505
// raw data used for LLSD::Type lookup
506
-struct Data
+struct LLSDData
507
{
508
LLSD::Type type;
509
const char* name;
@@ -534,7 +534,7 @@ class TypeLookup
534
535
LL_PROFILE_ZONE_SCOPED;
536
537
- for (const Data *di(boost::begin(typedata)), *dend(boost::end(typedata)); di != dend; ++di)
+ for (const LLSDData*di(boost::begin(typedata)), *dend(boost::end(typedata)); di != dend; ++di)
538
539
mMap[di->type] = di->name;
540
}
0 commit comments