rusty_v8
rusty_v8 copied to clipboard
fix: fix make_pod static asserts
- std::is_pod is deprecated in c++20 changed to std::is_standard_layout && std::is_trivial
- V shoud be trivially_copyable in order to copy from
Seems like we are memcpying std::shared_ptr in the test, which is not safe I think