Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
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
atlas
athena
Merge requests
!64250
Fix defects ( passed by value) reported by cppcheck
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix defects ( passed by value) reported by cppcheck
averbyts/athena:cppcheck_passbyvalue
into
23.0
Overview
7
Commits
2
Pipelines
2
Changes
6
Merged
Andrii Verbytskyi
requested to merge
averbyts/athena:cppcheck_passbyvalue
into
23.0
1 year ago
Overview
7
Commits
2
Pipelines
2
Changes
6
Expand
Fix defects ( passed by value) reported by cppcheck
@sroe
0
0
Merge request reports
Viewing commit
ad51d1ed
Prev
Next
Show latest version
6 files
+
8
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
ad51d1ed
Fix defects ( passed by value) reported by cppcheck
· ad51d1ed
Andrii Verbytskyi
authored
1 year ago
Calorimeter/CaloMonitoring/rootMacros/CellClusterLinkTool.C
+
1
−
1
Options
@@ -409,7 +409,7 @@ void Maketag(string& info,cellbin bin,int index,string& webadd,list<string>& myw
myweblist
.
unique
();
}
void
Output
(
const
clusterbin
&
clb
,
vector
<
cellbin
>
problemCellbinSummary
,
int
initial_pos
,
string
&
webadd
,
list
<
string
>&
myweblist
){
void
Output
(
const
clusterbin
&
clb
,
const
vector
<
cellbin
>
&
problemCellbinSummary
,
int
initial_pos
,
string
&
webadd
,
list
<
string
>&
myweblist
){
if
(
problemCellbinSummary
.
size
()
==
initial_pos
)
return
;
for
(
int
i
=
initial_pos
;
i
<
problemCellbinSummary
.
size
();
i
++
){
string
info
;
Loading