Skip to content

Commit

Permalink
[filterSfM] fix for linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
almarouk committed Sep 27, 2023
1 parent af49e06 commit 718224d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/software/pipeline/main_filterSfM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,12 @@ std::istream& operator>>(std::istream& in, FilterParams& params)
return in;
}

// required for linux build
inline std::ostream& operator<<(std::ostream& os, const FilterParams& params)
{
return os;
}

struct ObservationsAdaptator
{
using Derived = ObservationsAdaptator; //!< In this case the dataset class is myself.
Expand Down

0 comments on commit 718224d

Please sign in to comment.