m0dular-csgo icon indicating copy to clipboard operation
m0dular-csgo copied to clipboard

Remove boost dependency

Open h33p opened this issue 4 years ago • 0 comments

Removing dependency on boost headers would help with compile times and portability. Currently we are using boost::unordered_map and boost::interprocess:vector. The unordered map is used in shmfs, settings and could be replaced by a map-like structure, such as 1D-KDTree. There is no direct replacement for vector, a custom implementation has to be added to m0dular as stl vectors are not interprocess friendly.

h33p avatar Aug 27 '19 09:08 h33p