[ox/fs] Add FileAddress support to FileSystem

This commit is contained in:
2019-10-12 11:56:49 -05:00
parent ce7c416fb7
commit 54ac86fce7
6 changed files with 142 additions and 9 deletions

View File

@ -64,6 +64,10 @@ struct ValErr {
constexpr ValErr() noexcept: error(0) {
}
constexpr ValErr(Error error) noexcept: value(ox::move(value)), error(error) {
this->error = error;
}
constexpr ValErr(T value, Error error = OxError(0)) noexcept: value(ox::move(value)), error(error) {
}