Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kirill Terekhov
INMOST
Commits
a4eeead2
Commit
a4eeead2
authored
Dec 08, 2016
by
Kirill Terekhov
Browse files
Fix warning on visual studio
parent
008e5a56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Headers/inmost_expression.h
View file @
a4eeead2
...
...
@@ -405,12 +405,12 @@ namespace INMOST
__INLINE
multivar_expression
GetVariable
(
INMOST_DATA_ENUM_TYPE
index
)
{
multivar_expression
ret
(
0
);
for
(
int
k
=
0
;
k
<
entries
.
Size
();
++
k
)
for
(
int
k
=
0
;
k
<
(
int
)
entries
.
Size
();
++
k
)
if
(
entries
.
GetIndex
(
k
)
==
index
)
{
ret
.
SetValue
(
entries
.
GetValue
(
k
));
Sparse
::
Row
&
r
=
ret
.
GetRow
();
for
(
int
q
=
0
;
q
<
hessian_entries
.
Size
();
++
q
)
for
(
int
q
=
0
;
q
<
(
int
)
hessian_entries
.
Size
();
++
q
)
{
Sparse
::
HessianRow
::
index
&
i
=
hessian_entries
.
GetIndex
(
q
);
if
(
i
.
first
==
index
)
...
...
Write
Preview
Markdown
is supported
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