Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dynare
preprocessor
Commits
c66e000b
Commit
c66e000b
authored
Jun 28, 2017
by
Houtan Bastani
Browse files
preprocessor: remove warning on int/size_t comparison
parent
162675ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
DynamicModel.cc
View file @
c66e000b
...
...
@@ -3726,7 +3726,7 @@ DynamicModel::cloneDynamic(DynamicModel &dynamic_model) const
vector
<
pair
<
string
,
string
>
>
eq_tags
;
for
(
vector
<
pair
<
int
,
pair
<
string
,
string
>
>
>::
const_iterator
it
=
equation_tags
.
begin
();
it
!=
equation_tags
.
end
();
++
it
)
if
(
it
->
first
==
i
)
if
(
it
->
first
==
(
int
)
i
)
eq_tags
.
push_back
(
it
->
second
);
dynamic_model
.
addEquation
(
equations
[
i
]
->
cloneDynamic
(
dynamic_model
),
equations_lineno
[
i
],
eq_tags
);
}
...
...
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