libcaf
0.13.2
|
The message passing of libcaf
prohibits pointers in messages because it enforces network transparent messaging.
More...
The message passing of libcaf
prohibits pointers in messages because it enforces network transparent messaging.
Unfortunately, string literals in C++
have the type const char*, resp.
const char[]. Since libcaf
is a user-friendly library, it silently converts string literals and C-strings to std::string
objects. It also converts unicode literals to the corresponding STL container.
A few examples: