Skip to content

Commit fceba7e

Browse files
authored
[FIX] : fix linux build
1 parent 71ebb4b commit fceba7e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/panes/log/LogPane.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ void LogPane::PrepareLog() {
386386
}
387387

388388
void LogPane::m_exportToCSV(const std::string& aFilePathName) {
389-
auto& csv_file = ez::Csv::Csv();
389+
ez::Csv csv_file;
390390

391391
csv_file.setHeader({
392392
"time_epoch",

src/panes/log/LogPaneSecondView.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ void LogPaneSecondView::PrepareLog() {
387387
}
388388

389389
void LogPaneSecondView::m_exportToCSV(const std::string& aFilePathName) {
390-
auto& csv_file = ez::Csv::Csv();
390+
ez::Csv csv_file;
391391

392392
csv_file.setHeader({
393393
"time_epoch",

0 commit comments

Comments
 (0)