Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alchemy
Alchemy Viewer
Commits
0dac8225
Commit
0dac8225
authored
Feb 05, 2020
by
Rye Mutt
🍞
Browse files
Revert "Possible pointer int size issue in llinitparam"
This reverts commit
64071de1
.
parent
acc7667d
Changes
1
Hide whitespace changes
Inline
Side-by-side
indra/llcommon/llinitparam.h
View file @
0dac8225
...
...
@@ -514,10 +514,10 @@ namespace LLInitParam
}
else
{
found_it
=
mParserReadFuncs
->
find
(
&
typeid
(
size_t
));
found_it
=
mParserReadFuncs
->
find
(
&
typeid
(
S32
));
if
(
found_it
!=
mParserReadFuncs
->
end
())
{
size_t
int_value
;
S32
int_value
;
bool
parsed
=
found_it
->
second
(
*
this
,
(
void
*
)
&
int_value
);
param
=
(
T
)
int_value
;
return
parsed
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment