Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
celllframe-node
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
17
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
cellframe
celllframe-node
Merge requests
!1710
Hotfixes 1007
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Hotfixes 1007
hotfixes-1007
into
master
Overview
0
Commits
45
Pipelines
0
Changes
10
Merged
Constantin P.
requested to merge
hotfixes-1007
into
master
6 months ago
Overview
0
Commits
45
Pipelines
0
Changes
10
Expand
👍
0
👎
0
Merge request reports
Compare
master
version 11
898bf49f
6 months ago
version 10
898bf49f
6 months ago
version 9
510fa876
6 months ago
version 8
510fa876
6 months ago
version 7
510fa876
6 months ago
version 6
510fa876
6 months ago
version 5
fdf626bb
6 months ago
version 4
fdf626bb
6 months ago
version 3
fdf626bb
6 months ago
version 2
fdf626bb
6 months ago
version 1
8a66814f
6 months ago
master (base)
and
latest version
latest version
898bf49f
45 commits,
6 months ago
version 11
898bf49f
45 commits,
6 months ago
version 10
898bf49f
45 commits,
6 months ago
version 9
510fa876
44 commits,
6 months ago
version 8
510fa876
44 commits,
6 months ago
version 7
510fa876
44 commits,
6 months ago
version 6
510fa876
44 commits,
6 months ago
version 5
fdf626bb
43 commits,
6 months ago
version 4
fdf626bb
43 commits,
6 months ago
version 3
fdf626bb
43 commits,
6 months ago
version 2
fdf626bb
43 commits,
6 months ago
version 1
8a66814f
42 commits,
6 months ago
10 files
+
115
−
43
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
conftool/commands/ConfigCommand.cpp
+
2
−
2
Options
@@ -132,11 +132,11 @@ bool CConfigCommand::execute(bool non_intercative, int flags)
std
::
string
cfg_val
;
bool
param_exists
=
cfg
.
exists
(
this
->
group
,
this
->
param
,
&
cfg_val
);
std
::
cout
<<
this
->
cfg_name
<<
": ["
<<
this
->
group
<<
"] "
<<
this
->
param
+
"="
+
cfg_val
<<
std
::
endl
;
return
tru
e
;
return
fals
e
;
};
//actions return true if config was altered and need to be saved
bool
res
=
actions
[
this
->
action
]();
if
(
res
)
cfg
.
save
();
return
res
;
return
true
;
}
Loading