Reputation: 1980
I am trying to convert a c++ code to c++11
style and I would like to stop using some boost related libraries. I know c++11
borrowed a lot of concepts from boost. Is there a replacement of shared_memory_object
in c++11
?
Upvotes: 0
Views: 175
Reputation: 4010
No. There is no notion of "Shared memory" in the standard. And thus no facilities to work with it.
Upvotes: 4