Skip to content
Snippets Groups Projects
Commit f7668cd0 authored by Richard Linden's avatar Richard Linden
Browse files

more gcc build fixin

parent 1cbe0f68
No related branches found
No related tags found
No related merge requests found
...@@ -179,11 +179,11 @@ namespace LLInitParam ...@@ -179,11 +179,11 @@ namespace LLInitParam
{ {
private: private:
struct Inaccessable{}; struct Inaccessable{};
typedef typename ParamValue<T>::value_t value_t;
public: public:
typedef std::map<std::string, T> value_name_map_t; typedef std::map<std::string, T> value_name_map_t;
typedef Inaccessable name_t; typedef Inaccessable name_t;
typedef TypeValues<T> type_value_t; typedef TypeValues<T> type_value_t;
typedef typename ParamValue<T>::value_t value_t;
TypeValues(const value_t& val) TypeValues(const value_t& val)
: ParamValue<T>(val) : ParamValue<T>(val)
...@@ -232,11 +232,11 @@ namespace LLInitParam ...@@ -232,11 +232,11 @@ namespace LLInitParam
: public ParamValue<T> : public ParamValue<T>
{ {
typedef TypeValuesHelper<T, DERIVED_TYPE, IS_SPECIALIZED> self_t; typedef TypeValuesHelper<T, DERIVED_TYPE, IS_SPECIALIZED> self_t;
typedef typename ParamValue<T>::value_t value_t;
public: public:
typedef typename std::map<std::string, T> value_name_map_t; typedef typename std::map<std::string, T> value_name_map_t;
typedef std::string name_t; typedef std::string name_t;
typedef self_t type_value_t; typedef self_t type_value_t;
typedef typename ParamValue<T>::value_t value_t;
TypeValuesHelper(const value_t& val) TypeValuesHelper(const value_t& val)
: ParamValue<T>(val) : ParamValue<T>(val)
...@@ -845,10 +845,11 @@ namespace LLInitParam ...@@ -845,10 +845,11 @@ namespace LLInitParam
protected: protected:
typedef TypedParam<T, NAME_VALUE_LOOKUP, HAS_MULTIPLE_VALUES, VALUE_IS_BLOCK> self_t; typedef TypedParam<T, NAME_VALUE_LOOKUP, HAS_MULTIPLE_VALUES, VALUE_IS_BLOCK> self_t;
typedef ParamValue<T> param_value_t; typedef ParamValue<T> param_value_t;
typedef typename param_value_t::value_t value_t;
typedef typename param_value_t::default_value_t default_value_t; typedef typename param_value_t::default_value_t default_value_t;
typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t; typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t;
public: public:
typedef typename param_value_t::value_t value_t;
using named_value_t::operator(); using named_value_t::operator();
TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count) TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count)
...@@ -1002,12 +1003,12 @@ namespace LLInitParam ...@@ -1002,12 +1003,12 @@ namespace LLInitParam
{ {
protected: protected:
typedef ParamValue<T> param_value_t; typedef ParamValue<T> param_value_t;
typedef typename param_value_t::value_t value_t;
typedef typename param_value_t::default_value_t default_value_t; typedef typename param_value_t::default_value_t default_value_t;
typedef TypedParam<T, NAME_VALUE_LOOKUP, false, IS_A_BLOCK> self_t; typedef TypedParam<T, NAME_VALUE_LOOKUP, false, IS_A_BLOCK> self_t;
typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t; typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t;
public: public:
using named_value_t::operator(); using named_value_t::operator();
typedef typename param_value_t::value_t value_t;
TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count) TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count)
: Param(block_descriptor.mCurrentBlockPtr), : Param(block_descriptor.mCurrentBlockPtr),
...@@ -1188,10 +1189,11 @@ namespace LLInitParam ...@@ -1188,10 +1189,11 @@ namespace LLInitParam
typedef ParamValue<VALUE_TYPE> param_value_t; typedef ParamValue<VALUE_TYPE> param_value_t;
typedef typename std::vector<typename NAME_VALUE_LOOKUP::type_value_t> container_t; typedef typename std::vector<typename NAME_VALUE_LOOKUP::type_value_t> container_t;
typedef container_t default_value_t; typedef container_t default_value_t;
typedef typename param_value_t::value_t value_t;
typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t; typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t;
public: public:
typedef typename param_value_t::value_t value_t;
TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count) TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count)
: Param(block_descriptor.mCurrentBlockPtr) : Param(block_descriptor.mCurrentBlockPtr)
{ {
...@@ -1386,11 +1388,12 @@ namespace LLInitParam ...@@ -1386,11 +1388,12 @@ namespace LLInitParam
typedef ParamValue<VALUE_TYPE> param_value_t; typedef ParamValue<VALUE_TYPE> param_value_t;
typedef typename std::vector<typename NAME_VALUE_LOOKUP::type_value_t> container_t; typedef typename std::vector<typename NAME_VALUE_LOOKUP::type_value_t> container_t;
typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t; typedef typename NAME_VALUE_LOOKUP::type_value_t named_value_t;
typedef typename param_value_t::value_t value_t;
typedef container_t default_value_t; typedef container_t default_value_t;
typedef typename container_t::iterator iterator; typedef typename container_t::iterator iterator;
typedef typename container_t::const_iterator const_iterator; typedef typename container_t::const_iterator const_iterator;
public: public:
typedef typename param_value_t::value_t value_t;
TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count) TypedParam(BlockDescriptor& block_descriptor, const char* name, const default_value_t& value, ParamDescriptor::validation_func_t validate_func, S32 min_count, S32 max_count)
: Param(block_descriptor.mCurrentBlockPtr) : Param(block_descriptor.mCurrentBlockPtr)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment