Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
titan.core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse Titan
titan.core
Commits
23c8b764
Commit
23c8b764
authored
8 years ago
by
Kristof Szabados
Browse files
Options
Downloads
Patches
Plain Diff
matching up types
parent
76f882b2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/Array.hh
+4
-4
4 additions, 4 deletions
core/Array.hh
with
4 additions
and
4 deletions
core/Array.hh
+
4
−
4
View file @
23c8b764
...
...
@@ -65,7 +65,7 @@ public:
TIMER_ARRAY
()
{
}
~
TIMER_ARRAY
()
{
for
(
size_
t
i
=
0
;
i
<
array_size
;
++
i
)
{
for
(
unsigned
in
t
i
=
0
;
i
<
array_size
;
++
i
)
{
Free
(
names
[
i
]);
}
}
...
...
@@ -126,7 +126,7 @@ public:
PORT_ARRAY
()
{
}
~
PORT_ARRAY
()
{
for
(
size_
t
i
=
0
;
i
<
array_size
;
++
i
)
{
for
(
unsigned
in
t
i
=
0
;
i
<
array_size
;
++
i
)
{
Free
(
names
[
i
]);
}
}
...
...
@@ -439,7 +439,7 @@ Module_Param* VALUE_ARRAY<T_type,array_size,index_offset>::get_param
return
array_elements
[
param_index
].
get_param
(
param_name
);
}
Vector
<
Module_Param
*>
values
;
for
(
int
i
=
0
;
i
<
array_size
;
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
array_size
;
++
i
)
{
values
.
push_back
(
array_elements
[
i
].
get_param
(
param_name
));
}
Module_Param_Value_List
*
mp
=
new
Module_Param_Value_List
();
...
...
@@ -1610,7 +1610,7 @@ Module_Param* TEMPLATE_ARRAY<T_value_type,T_template_type,array_size,index_offse
break
;
case
SPECIFIC_VALUE
:
{
Vector
<
Module_Param
*>
values
;
for
(
int
i
=
0
;
i
<
array_size
;
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
array_size
;
++
i
)
{
values
.
push_back
(
single_value
.
value_elements
[
i
]
->
get_param
(
param_name
));
}
mp
=
new
Module_Param_Value_List
();
...
...
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