Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
f7668cd0
Commit
f7668cd0
authored
12 years ago
by
Richard Linden
Browse files
Options
Downloads
Patches
Plain Diff
more gcc build fixin
parent
1cbe0f68
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llxuixml/llinitparam.h
+9
-6
9 additions, 6 deletions
indra/llxuixml/llinitparam.h
with
9 additions
and
6 deletions
indra/llxuixml/llinitparam.h
+
9
−
6
View file @
f7668cd0
...
@@ -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
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment