diff options
Diffstat (limited to 'boot/result.cc')
| -rw-r--r-- | boot/result.cc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/boot/result.cc b/boot/result.cc index dab82f4..2222bd5 100644 --- a/boot/result.cc +++ b/boot/result.cc @@ -19,8 +19,8 @@ along with GCC; see the file COPYING3. If not see namespace elna::boot { - error::error(const char *path, const struct position position) - : position(position), path(path) + error::error(const struct position position) + : position(position) { } @@ -34,11 +34,6 @@ namespace elna::boot return this->position.column; } - error_container::error_container(const char *input_file) - : input_file(input_file) - { - } - std::deque<std::unique_ptr<error>>& error_container::errors() { return m_errors; |
