1
vote
Remove C++-STL/Boost debug symbols (… or do not create them)
You may want to use strip.
strip --strip-unneeded --strip-debug libfoo.so
Why don't you just build without debugging in the first place though?
…
8
votes
Pointers and containers
Boost pointer containers have strict ownership over the resources they hold. A std::vector<boost::shared_ptr<X>> has shared ownership. There are reasons why that may be necessary, but in case …
1
vote
What is a good use case for tr1::result_of?
It's useful when doing meta-programming. The only time I used it was in a wrapper function. If result_of<T>::type was void, the wrapper returned nothing. Otherwise it returns the whatever the …
2
votes
8
votes
How do I create a generic std::vector destructor?
You might want to use boost's pointer containers. They are highly efficient and safe. …
0
votes
delete a specific entry in the map,but the iterator must point to the next element after the deletion.
#include <boost/next_prior.hpp>
map<string,vector<string> >::iterator next = boost::next(itr);
map1.erase(iter);
iter = next;
…
2
votes
How do I sort a vector of pairs based on the second element of the pair?
For something reusable:
template<template <typename> class P = std::less >
struct compare_pair_second {
template<class T1, class T2> bool operator()(const std: …
