Skip to content

Commit

Permalink
Merge pull request #227 from tompaynter03/master
Browse files Browse the repository at this point in the history
Fixed a build error when building a shared library with -fPIC.
  • Loading branch information
sweeneychris authored Jan 6, 2019
2 parents d40429a + 149a6ce commit 4ba81cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/theia/math/matrix/linear_operator.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace theia {
// www.ceres-solver.org
class LinearOperator {
public:
virtual ~LinearOperator();
virtual ~LinearOperator()=default;

// y = y + Ax;
virtual void RightMultiply(const Eigen::VectorXd& x,
Expand Down

0 comments on commit 4ba81cc

Please sign in to comment.