Skip to content

Commit 7fd919f

Browse files
pcaspersjenkins
authored andcommitted
QPR-12349 fixes
1 parent a134527 commit 7fd919f

4 files changed

Lines changed: 5 additions & 1 deletion

File tree

OREData/ored/report/csvreport.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include <boost/filesystem/operations.hpp>
2929
#include <boost/filesystem/path.hpp>
3030
#include <boost/variant/static_visitor.hpp>
31+
#include <boost/algorithm/string/join.hpp>
3132

3233
using std::string;
3334

OREData/ored/report/csvreport.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class CSVFileReport : public Report {
7676
Size version_ = 0;
7777
FILE* fp_;
7878
bool finalized_ = false;
79-
vector<string> headers_;
79+
std::vector<std::string> headers_;
8080
};
8181
} // namespace data
8282
} // namespace ore

OREData/ored/report/inmemoryreport.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
#include <ored/report/inmemoryreport.hpp>
2020

21+
#include <boost/algorithm/string/join.hpp>
22+
2123
namespace ore {
2224
namespace data {
2325

OREData/ored/report/inmemoryreport.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include <ored/report/report.hpp>
2828
#include <ql/errors.hpp>
2929
#include <vector>
30+
3031
namespace ore {
3132
namespace data {
3233
using std::string;

0 commit comments

Comments
 (0)