Skip to content

Commit 8dc1979

Browse files
generatedunixname1435320781521086meta-codesync[bot]
authored andcommitted
Fix CQS signal facebook-hte-MissingOverride in fbcode/mapillary/opensfm
Differential Revision: D91876929 fbshipit-source-id: 7d02516fa5becf33917e53571a41759ff86e1224
1 parent 6201507 commit 8dc1979

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

opensfm/src/bundle/error/projection_errors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ class ReprojectionError3DAnalytic
253253
using ReprojectionError3D::ReprojectionError3D;
254254

255255
bool Evaluate(double const* const* parameters, double* residuals,
256-
double** jacobians) const {
256+
double** jacobians) const override {
257257
const double* rig_instance = parameters[1];
258258
const double* rig_camera = parameters[2];
259259
const double* point = parameters[3];

opensfm/src/map/test/tracks_manager_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class TempFile {
2525

2626
class TracksManagerTest : public ::testing::Test {
2727
protected:
28-
void SetUp() {
28+
void SetUp() override {
2929
const auto o1 = map::Observation(1.0, 1.0, 1.0, 1, 1, 1, 1, 1, 1);
3030
const auto o2 = map::Observation(2.0, 2.0, 2.0, 2, 2, 2, 2, 2, 2);
3131
const auto o3 = map::Observation(3.0, 3.0, 3.0, 3, 3, 3, 3);

0 commit comments

Comments
 (0)