Skip to content

Commit 9146940

Browse files
Add standard include for fstream
1 parent ce3c1e1 commit 9146940

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

src/software/convert/main_importKnownPoses.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <string>
2121
#include <regex>
2222
#include <iostream>
23+
#include <fstream>
2324
#include <list>
2425

2526
#include <boost/property_tree/ptree.hpp>

src/software/pipeline/main_globalRotationEstimating.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
#include <boost/program_options.hpp>
2626
#include <filesystem>
27+
#include <fstream>
2728

2829
// These constants define the current software version.
2930
// They must be updated when the command line is changed.

src/software/pipeline/main_nodalSfM.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include <filesystem>
3737
#include <random>
3838
#include <regex>
39+
#include <fstream>
3940

4041
#include <boost/graph/graph_traits.hpp>
4142
#include <boost/graph/adjacency_list.hpp>

src/software/pipeline/main_sfmBootstraping.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include <cstdlib>
3535
#include <random>
3636
#include <regex>
37+
#include <fstream>
3738

3839
// These constants define the current software version.
3940
// They must be updated when the command line is changed.

src/software/utils/main_rigTransform.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include <boost/program_options.hpp>
1616

17+
#include <fstream>
1718
#include <iostream>
1819
#include <string>
1920
#include <chrono>

src/software/utils/main_sfmPoseInjecting.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#include <boost/program_options.hpp>
1818
#include <boost/json.hpp>
1919

20+
#include <fstream>
21+
2022
// These constants define the current software version.
2123
// They must be updated when the command line is changed.
2224
#define ALICEVISION_SOFTWARE_VERSION_MAJOR 1

0 commit comments

Comments
 (0)