Improve bitwise serialization trait

This commit is contained in:
Eladash 2021-06-11 15:09:04 +03:00 committed by Ivan
parent 9cbcce671d
commit 76bfe54c7e
7 changed files with 15 additions and 15 deletions

View file

@ -29,7 +29,7 @@ namespace vm
using type = T;
using addr_type = std::remove_cv_t<AT>;
static constexpr bool enable_bitcopy = true;
using enable_bitcopy = std::true_type;
_ptr_base() = default;
@ -228,7 +228,7 @@ namespace vm
public:
using addr_type = std::remove_cv_t<AT>;
static constexpr bool enable_bitcopy = true;
using enable_bitcopy = std::true_type;
_ptr_base() = default;