1
vote
3answers
205 views
function overloading fail: why did these operators clash?
Hi,
I've got a big big code base that includes two main namespaces: the engine and the application.
The engine defines a vector3 class as a typedef of another vector3 class, with …
2
votes
Singleton: How should it be used
Modern C++ Design by Alexandrescu has a thread-safe, inherietence-safe generic singleton.
For my 2p-worth, I think it's important to have defined lifetimes for your singletons (when it's ab …
