Commit 0b02d80c authored by Dominik Charousset's avatar Dominik Charousset

Assign type ID to UUID

parent 970a1b2a
...@@ -410,6 +410,7 @@ CAF_BEGIN_TYPE_ID_BLOCK(core_module, 0) ...@@ -410,6 +410,7 @@ CAF_BEGIN_TYPE_ID_BLOCK(core_module, 0)
CAF_ADD_TYPE_ID(core_module, (caf::timestamp)) CAF_ADD_TYPE_ID(core_module, (caf::timestamp))
CAF_ADD_TYPE_ID(core_module, (caf::unit_t)) CAF_ADD_TYPE_ID(core_module, (caf::unit_t))
CAF_ADD_TYPE_ID(core_module, (caf::uri)) CAF_ADD_TYPE_ID(core_module, (caf::uri))
CAF_ADD_TYPE_ID(core_module, (caf::uuid))
CAF_ADD_TYPE_ID(core_module, (caf::weak_actor_ptr)) CAF_ADD_TYPE_ID(core_module, (caf::weak_actor_ptr))
CAF_ADD_TYPE_ID(core_module, (std::vector<caf::actor>) ) CAF_ADD_TYPE_ID(core_module, (std::vector<caf::actor>) )
CAF_ADD_TYPE_ID(core_module, (std::vector<caf::actor_addr>) ) CAF_ADD_TYPE_ID(core_module, (std::vector<caf::actor_addr>) )
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include "caf/timestamp.hpp" #include "caf/timestamp.hpp"
#include "caf/unit.hpp" #include "caf/unit.hpp"
#include "caf/uri.hpp" #include "caf/uri.hpp"
#include "caf/uuid.hpp"
namespace caf::core { namespace caf::core {
......
...@@ -12,7 +12,7 @@ namespace caf::io::basp { ...@@ -12,7 +12,7 @@ namespace caf::io::basp {
/// @{ /// @{
/// The current BASP version. Note: BASP is not backwards compatible. /// The current BASP version. Note: BASP is not backwards compatible.
constexpr uint64_t version = 4; constexpr uint64_t version = 5;
/// @} /// @}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment