Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitra Amperiadou committed Aug 25, 2023
1 parent 77d24d6 commit 4375676
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Core/include/Acts/Navigation/MultiLayerSurfacesUpdator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ struct PathGridSurfacesGenerator {
std::vector<Vector3> pathCoordinates = {};
pathCoordinates.reserve(numberOfSteps);

auto tposition = startPosition;
auto tposition = std::move(startPosition);

for (std::size_t i = 0; i < numberOfSteps; i++) {
pathCoordinates.push_back(tposition);
Expand Down
2 changes: 1 addition & 1 deletion Core/src/Detector/MultiWireStructureBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class MultiWireInternalStructureBuilder
m_logger(std::move(mlogger)) {}

Acts::Experimental::InternalStructure construct(
const Acts::GeometryContext& gctx) const {
const Acts::GeometryContext& gctx) const final {
if (not m_cfg.auxiliary.empty()) {
ACTS_DEBUG(m_cfg.auxiliary);
}
Expand Down

0 comments on commit 4375676

Please sign in to comment.