aboutsummaryrefslogtreecommitdiff
path: root/include/openvic-dataloader/detail/BasicParser.hpp
diff options
context:
space:
mode:
author hop311 <hop3114@gmail.com>2024-01-22 17:32:18 +0100
committer hop311 <hop3114@gmail.com>2024-01-22 17:32:18 +0100
commitfe1938484ab359fb76712cb59a43830e6f852f00 (patch)
tree9ac450512b18730461c4eaeb3af29b03da6f9b71 /include/openvic-dataloader/detail/BasicParser.hpp
parent77167fe3366b40b74abff45bcb62f7480963d617 (diff)
Fixed BasicParser::_file_path relying on externally controlled memoryfix/file-path-memory
Diffstat (limited to 'include/openvic-dataloader/detail/BasicParser.hpp')
-rw-r--r--include/openvic-dataloader/detail/BasicParser.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/openvic-dataloader/detail/BasicParser.hpp b/include/openvic-dataloader/detail/BasicParser.hpp
index 1e2fd14..7524bb5 100644
--- a/include/openvic-dataloader/detail/BasicParser.hpp
+++ b/include/openvic-dataloader/detail/BasicParser.hpp
@@ -1,5 +1,7 @@
#pragma once
+#include <string>
+#include <string_view>
#include <vector>
#include <openvic-dataloader/ParseError.hpp>
@@ -22,13 +24,14 @@ namespace ovdl::detail {
const std::vector<ParseError>& get_errors() const;
const std::vector<ParseWarning>& get_warnings() const;
+ std::string_view get_file_path() const;
protected:
std::vector<ParseError> _errors;
std::vector<ParseWarning> _warnings;
std::reference_wrapper<std::ostream> _error_stream;
- const char* _file_path;
+ std::string _file_path;
bool _has_fatal_error = false;
};
} \ No newline at end of file