summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-04-20 19:31:46 -0700
committerRichard Linden <none@none>2012-04-20 19:31:46 -0700
commit20de8559e56df169ec7978e50061c3d587142ad5 (patch)
tree70997858db572ec4e939d7fbdb929675b1fb37ed /indra
parentf11f7c78537f096a637f5f1790e4f2a089718a2e (diff)
more gcc fixes
Diffstat (limited to 'indra')
-rw-r--r--indra/llxuixml/llinitparam.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llxuixml/llinitparam.h b/indra/llxuixml/llinitparam.h
index f7e5e41cae..a956719fa3 100644
--- a/indra/llxuixml/llinitparam.h
+++ b/indra/llxuixml/llinitparam.h
@@ -755,13 +755,13 @@ namespace LLInitParam
{
typedef Lazy<ParamValue<S, BLOCK_T>, BLOCK_T> value_t;
};
- template <typename T> struct Cons<Lazy<T, IS_A_BLOCK> >
+ template <typename S> struct Cons<Lazy<S, IS_A_BLOCK> >
{
- typedef Lazy<T, IS_A_BLOCK> value_t;
+ typedef Lazy<S, IS_A_BLOCK> value_t;
};
- template <typename T> struct Cons<Lazy<T, NOT_A_BLOCK> >
+ template <typename S> struct Cons<Lazy<S, NOT_A_BLOCK> >
{
- typedef Lazy<T, BLOCK_T> value_t;
+ typedef Lazy<S, BLOCK_T> value_t;
};
};