Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
vite
Commits
00b9abbf
Commit
00b9abbf
authored
10 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup commented code
parent
8609aad1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/parser/PajeParser/ParserEventPaje.cpp
+2
-4
2 additions, 4 deletions
src/parser/PajeParser/ParserEventPaje.cpp
with
2 additions
and
4 deletions
src/parser/PajeParser/ParserEventPaje.cpp
+
2
−
4
View file @
00b9abbf
...
...
@@ -579,7 +579,6 @@ void ParserEventPaje::store_event(const PajeLine *line,
case
_PajeStartLink
:
{
LinkType
*
temp_link_type
=
trace
.
search_link_type
(
type
);
//EntityValue *temp_entity_value = trace.search_entity_value(value_string, temp_link_type);
Container
*
temp_container
=
NULL
;
Container
*
temp_start_container
=
NULL
;
...
...
@@ -619,10 +618,9 @@ void ParserEventPaje::store_event(const PajeLine *line,
case
_PajeEndLink
:
{
LinkType
*
temp_link_type
=
trace
.
search_link_type
(
type
);
//EntityValue *temp_entity_value = trace.search_entity_value(value_string, temp_link_type);
Container
*
temp_container
=
NULL
;
Container
*
temp_end_container
=
NULL
;
// temp_container
if
(
_containers
.
find
(
container
)
!=
_containers
.
end
())
{
temp_container
=
_containers
[
container
];
...
...
@@ -650,7 +648,7 @@ void ParserEventPaje::store_event(const PajeLine *line,
Error
::
set
(
Error
::
VITE_ERR_UNKNOWN_CONTAINER
+
end_container
.
to_string
(),
line
->
_id
,
Error
::
VITE_ERRCODE_ERROR
);
}
else
{
trace
.
end_link
(
time
,
temp_link_type
,
temp_container
,
temp_end_container
,
/*temp_entity_value, */
key
,
extra_fields
);
trace
.
end_link
(
time
,
temp_link_type
,
temp_container
,
temp_end_container
,
key
,
extra_fields
);
}
}
break
;
...
...
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