Skip to content

Commit

Permalink
[software] fix main_ConvertSfM_DataFormat.cpp
Browse files Browse the repository at this point in the history
-C flag was ineffective
  • Loading branch information
rjanvier authored and pmoulon committed May 28, 2019
1 parent 9900bef commit bbdbcbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/software/SfM/main_ConvertSfM_DataFormat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ int main(int argc, char **argv)
(cmd.used('V') ? VIEWS : 0)
| (cmd.used('I') ? INTRINSICS : 0)
| (cmd.used('E') ? EXTRINSICS : 0)
| (cmd.used('S') ? STRUCTURE : 0);
| (cmd.used('S') ? STRUCTURE : 0)
| (cmd.used('C') ? CONTROL_POINTS : 0);

flags = (flags) ? flags : ALL;

Expand Down

0 comments on commit bbdbcbc

Please sign in to comment.