Skip to content

Commit

Permalink
Add standard include for fstream
Browse files Browse the repository at this point in the history
  • Loading branch information
servantftechnicolor committed Jan 21, 2025
1 parent ce3c1e1 commit 9146940
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/software/convert/main_importKnownPoses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <string>
#include <regex>
#include <iostream>
#include <fstream>
#include <list>

#include <boost/property_tree/ptree.hpp>
Expand Down
1 change: 1 addition & 0 deletions src/software/pipeline/main_globalRotationEstimating.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

#include <boost/program_options.hpp>
#include <filesystem>
#include <fstream>

// These constants define the current software version.
// They must be updated when the command line is changed.
Expand Down
1 change: 1 addition & 0 deletions src/software/pipeline/main_nodalSfM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#include <filesystem>
#include <random>
#include <regex>
#include <fstream>

#include <boost/graph/graph_traits.hpp>
#include <boost/graph/adjacency_list.hpp>
Expand Down
1 change: 1 addition & 0 deletions src/software/pipeline/main_sfmBootstraping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <cstdlib>
#include <random>
#include <regex>
#include <fstream>

// These constants define the current software version.
// They must be updated when the command line is changed.
Expand Down
1 change: 1 addition & 0 deletions src/software/utils/main_rigTransform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#include <boost/program_options.hpp>

#include <fstream>
#include <iostream>
#include <string>
#include <chrono>
Expand Down
2 changes: 2 additions & 0 deletions src/software/utils/main_sfmPoseInjecting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#include <boost/program_options.hpp>
#include <boost/json.hpp>

#include <fstream>

// These constants define the current software version.
// They must be updated when the command line is changed.
#define ALICEVISION_SOFTWARE_VERSION_MAJOR 1
Expand Down

0 comments on commit 9146940

Please sign in to comment.