Start working on a VFS implementation #22

Closed
apio wants to merge 44 commits from oop-vfs into main
2 changed files with 2 additions and 2 deletions
Showing only changes of commit ae22321648 - Show all commits

View File

@ -101,7 +101,7 @@ template <typename T> class Option
return true;
}
bool try_move_value(T& ref) const
bool try_move_value(T& ref)
{
if (!has_value()) return false;
m_has_value = false;

View File

@ -110,7 +110,7 @@ template <typename T> class Result
return m_value.try_set_value(ref);
}
bool try_move_value(T& ref) const
bool try_move_value(T& ref)
{
return m_value.try_move_value(ref);
}