summaryrefslogtreecommitdiff
path: root/indra/llxuixml/lluicolor.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llxuixml/lluicolor.h')
-rw-r--r--indra/llxuixml/lluicolor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llxuixml/lluicolor.h b/indra/llxuixml/lluicolor.h
index aff81a695d..fb9c6b9161 100644
--- a/indra/llxuixml/lluicolor.h
+++ b/indra/llxuixml/lluicolor.h
@@ -15,7 +15,7 @@
namespace LLInitParam
{
- template<typename T, typename IS_BOOST_FUNCTION>
+ template<typename T, bool>
struct ParamCompare;
}
@@ -37,7 +37,7 @@ public:
bool isReference() const;
private:
- friend struct LLInitParam::ParamCompare<LLUIColor, boost::false_type>;
+ friend struct LLInitParam::ParamCompare<LLUIColor, false>;
const LLColor4* mColorPtr;
LLColor4 mColor;
@@ -46,7 +46,7 @@ private:
namespace LLInitParam
{
template<>
- struct ParamCompare<class LLUIColor, boost::false_type>
+ struct ParamCompare<LLUIColor, false>
{
static bool equals(const class LLUIColor& a, const class LLUIColor& b);
};