Skip to content
Snippets Groups Projects

Fix defects ( passed by value) reported by cppcheck

Merged Andrii Verbytskyi requested to merge averbyts/athena:cppcheck_passbyvalue into 23.0
6 files
+ 8
8
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -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