mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
Implement serialization.hpp, remove cereal submodule
Bump RSX capture version, use new serializer.
This commit is contained in:
parent
ddbe496097
commit
2169e8d935
16 changed files with 441 additions and 190 deletions
|
@ -1070,3 +1070,11 @@ constexpr bool is_same_ptr(const volatile Y* ptr)
|
|||
|
||||
template <typename X, typename Y>
|
||||
concept PtrSame = (is_same_ptr<X, Y>());
|
||||
|
||||
namespace utils
|
||||
{
|
||||
struct serial;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
extern bool serialize(utils::serial& ar, T& obj);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue