// This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at http://mozilla.org/MPL/2.0/. #include "elna/source/result.h" namespace elna { namespace source { error::error(const char *path, const struct position position) : position(position), path(path) { } std::size_t error::line() const noexcept { return this->position.line; } std::size_t error::column() const noexcept { return this->position.column; } } }