Skip to content

Commit

Permalink
Remove semicolon(s) from 3 files inc loki/lacis/storage/rtree/liveind…
Browse files Browse the repository at this point in the history
…ex/LokiShard.h

Summary:
`-Wextra-semi` or `-Wextra-semi-stmt` found an extra semi

If the code compiles, this is safe to land.

Reviewed By: palmje, dmm-fb

Differential Revision: D53776073

fbshipit-source-id: 99e769877dd17b6ddb51e82cf48d7605668cafb7
  • Loading branch information
r-barnes authored and facebook-github-bot committed Feb 14, 2024
1 parent bec57f3 commit 013956c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions opensfm/src/bundle/src/bundle_adjuster.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bool IsRigCameraUseful(bundle::RigCamera &rig_camera) {
return !(rig_camera.GetParametersToOptimize().empty() &&
rig_camera.GetValueData().isConstant(0.));
}
}; // namespace
} // namespace

namespace bundle {
BundleAdjuster::BundleAdjuster() {
Expand Down Expand Up @@ -140,7 +140,7 @@ void BundleAdjuster::AddRigInstance(
&rig_camera_exists->second,
&rig_instances_.at(rig_instance_id)));
}
};
}

void BundleAdjuster::AddRigCamera(const std::string &rig_camera_id,
const geometry::Pose &pose,
Expand All @@ -161,7 +161,7 @@ void BundleAdjuster::AddRigCamera(const std::string &rig_camera_id,
if (fixed) {
rig_camera.SetParametersToOptimize({});
}
};
}

void BundleAdjuster::AddRigInstancePositionPrior(
const std::string &instance_id, const Vec3d &position,
Expand Down

0 comments on commit 013956c

Please sign in to comment.