From 33ae72a3c73f6219be86715e8da71ed345f6077c Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 14 Aug 2026 23:14:38 +0200 Subject: Map Int and Word to hardware word sizes --- boot/result.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'boot/result.cc') diff --git a/boot/result.cc b/boot/result.cc index a5f0803..3970b1f 100644 --- a/boot/result.cc +++ b/boot/result.cc @@ -63,17 +63,17 @@ namespace elna::boot return this->m_start != this->m_end; } - error::error(const source_position position) + diagnostic::diagnostic(const source_position position) : position(position) { } - std::deque>& error_container::errors() + std::deque>& diagnostic_container::errors() { return m_errors; } - bool error_container::has_errors() const + bool diagnostic_container::has_errors() const { return !m_errors.empty(); } -- cgit v1.2.3