Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cdo
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
cdo
Commits
27ba2c6f
Commit
27ba2c6f
authored
2 years ago
by
Oliver Heidmann
Browse files
Options
Downloads
Patches
Plain Diff
fixed naming of buildNode; not build_node
parent
920f7f3d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Pipeline
#20816
passed
2 years ago
Stage: build
Stage: check
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/processManager.cc
+3
-3
3 additions, 3 deletions
src/processManager.cc
src/processManager.h
+1
-1
1 addition, 1 deletion
src/processManager.h
with
4 additions
and
4 deletions
src/processManager.cc
+
3
−
3
View file @
27ba2c6f
...
...
@@ -52,7 +52,7 @@ ProcessManager::buildProcessTree(std::vector<std::shared_ptr<Parser::Node>> root
else
{
Debug
(
"building Node for %s"
,
c
->
oper
);
auto
c_ptr
=
build
N
ode
(
c
);
auto
c_ptr
=
build
_n
ode
(
c
);
first_process
->
add_child
(
c_ptr
);
c_ptr
->
add_parent
(
first_process
);
}
...
...
@@ -63,7 +63,7 @@ ProcessManager::buildProcessTree(std::vector<std::shared_ptr<Parser::Node>> root
}
std
::
shared_ptr
<
Process
>
ProcessManager
::
build
N
ode
(
std
::
shared_ptr
<
Parser
::
Node
>
parent_node
)
ProcessManager
::
build
_n
ode
(
std
::
shared_ptr
<
Parser
::
Node
>
parent_node
)
{
Debug
(
"Building process for ptr %s"
,
parent_node
->
oper
);
auto
parent_process
=
create_process
(
parent_node
->
oper
,
split_args
(
parent_node
->
arguments
));
...
...
@@ -77,7 +77,7 @@ ProcessManager::buildNode(std::shared_ptr<Parser::Node> parent_node)
else
{
Debug
(
"Building Process for %s"
,
child_node
->
oper
);
auto
child_process
=
build
N
ode
(
child_node
);
auto
child_process
=
build
_n
ode
(
child_node
);
parent_process
->
add_child
(
child_process
);
child_process
->
add_parent
(
parent_process
);
}
...
...
This diff is collapsed.
Click to expand it.
src/processManager.h
+
1
−
1
View file @
27ba2c6f
...
...
@@ -54,7 +54,7 @@ public:
void
buildProcessTree
(
std
::
vector
<
std
::
shared_ptr
<
Parser
::
Node
>>
root
);
std
::
shared_ptr
<
Process
>
build
N
ode
(
std
::
shared_ptr
<
Parser
::
Node
>
ptr
);
std
::
shared_ptr
<
Process
>
build
_n
ode
(
std
::
shared_ptr
<
Parser
::
Node
>
ptr
);
};
...
...
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