[ox/std] Deprecate ox::move

This commit is contained in:
2021-12-01 02:55:24 -06:00
parent e0364925a3
commit 37664ede05
18 changed files with 36 additions and 32 deletions

View File

@@ -17,7 +17,7 @@ FileAddress::FileAddress(const FileAddress &other) noexcept {
}
FileAddress::FileAddress(FileAddress &&other) noexcept {
operator=(move(other));
operator=(std::move(other));
}
FileAddress::FileAddress(std::nullptr_t) noexcept {