0
votes
Adding Boost makes Debug build depend on “non-D” MSVC runtime DLLs
This is a classic link error. It looks like you're linking to a Boost DLL that it …
0
votes
Once you’ve adopted boost’s smart pointers, is there any case where you use raw pointers?
Not that I would do it, but you need raw pointers to implement, say, a linked list or a graph. But it would be much smarter to use std::list<> or boost::graph<>.
…
0
votes
lightweight boost::bind
There is libsigc++. The license is LGPL, but the implementation is about what Boost.Signal does (I'm reading "too heavyweight" to mean …
0
votes
Fully thread-safe shared_ptr implementation
Your compiler may already provide the thread safe smart pointers in the newer C++ Standards. I believe TBB is planning on addin …
2
votes
3
votes
Boost considered harmful?
I'm not at all convinced that this is doing any favours to the questioners who, by and large, are obvious C++ novices. ...:
Using smart pointers without understan …
1
vote
Is it wise to provide access to weak_ptr in a library interface?
I don't see any problem with exposing weak_ptrs, especially given that TR1 has similar smart pointers …
0
votes
Detecting when an object is passed to a new thread in C++?
The solution I'm familiar with is to state "if you don't use the correct API to interact with this object, then all bets are off."
You may be able to turn your requirements around and make …
1
vote
C++ Process Management
How much management do you need? Just fork/exec? IPC? Resource management? Security contexts and process iso …
3
votes
Should boost::filesystem::exists really throw an exception for removable media device with no media?
According to the documentation, exists(file_status s) returns …
1
vote
Boost equivalent of ManualResetEvent?
IIRC, ManualResetEvents exist to allow multiple threads to wait on an object, and one thread to get woken at a time when the object is signaled. The "manual reset" part comes from the …
