Posts by d3roch4 • 9 points
2 posts
-
1
votes1
answer424
viewsQ: How to create a mapped file with an Std::map
I’m trying to use a Std::map that allocates objects within a file mapped using boost, with a vector worked but with a map not #include <boost/interprocess/managed_mapped_file.hpp> #include…
-
-3
votes3
answers108
viewsA: Is there any way in pure C to implement set?
You can do it in C++, change the extension to .c for .cpp and use the compiler g++ instead of the gcc. You can use the vector, set, queue, map, ... have several, take a look at:…