I want to include boost::unordered_map in my project without downloading the whole Boost package. How can I do that?
boost::unordered_map
Use bcp: http://www.boost.org/doc/libs/1_52_0/tools/bcp/doc/html/index.html
bcp
cd $BOOST_DIR bcp unordered_map /tmp/TEST
Now /tmp/TEST contains only the things required for unordered_map, in my case 15Mb (as opposed to 734Mb for the full boost library)
unordered_map
2.1m questions
2.1m answers
60 comments
57.0k users