Import Geant4 11.3.0 source tree
This commit is contained in:
@@ -6,6 +6,10 @@ It must **not** be used as a substitute for writing good git commit messages!
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
|
||||
## 2024-07-17 Gabriele Cosmo (geombias-V11-02-01)
|
||||
- Fixed reported Coverity defect in G4WeightWindowStore, to use std::move()
|
||||
for avoiding implicit copy.
|
||||
|
||||
## 2024-04-02 Gabriele Cosmo (geombias-V11-02-00)
|
||||
- Applied trivial clang-tidy fixes to G4GeometryCell, i.e. use of default
|
||||
constructor/destructor.
|
||||
|
||||
@@ -181,7 +181,7 @@ AddLowerWeights(const G4GeometryCell& gCell,
|
||||
map[fGeneralUpperEnergyBound] = lowerWeights[i];
|
||||
++i;
|
||||
}
|
||||
fCellToUpEnBoundLoWePairsMap[gCell] = map;
|
||||
fCellToUpEnBoundLoWePairsMap[gCell] = std::move(map);
|
||||
}
|
||||
|
||||
void G4WeightWindowStore::
|
||||
|
||||
Reference in New Issue
Block a user