c++ Programming Glossary: suck
Other's library #define naming conflict http://stackoverflow.com/questions/1080635/others-library-define-naming-conflict this question You have a couple of options all of which suck. Add #undef DrawText in your own code Don't include windows.h..
Why is const-correctness specific to C++? http://stackoverflow.com/questions/1370042/why-is-const-correctness-specific-to-c away. If you couldn't cast it away then your world would suck. If you declare a method that takes a const Bla you could pass..
C++ interview - testing potential candidates http://stackoverflow.com/questions/1398436/c-interview-testing-potential-candidates to write code. I know my handwritten code would probably suck in a situation like that. Actually I've seldom been asked to..
Why is it so slow iterating over a big std::list? http://stackoverflow.com/questions/1402483/why-is-it-so-slow-iterating-over-a-big-stdlist list will be almost all cache misses. And performance will suck. In practice a linked list is hardly ever the right choice from..
Where can i download a free c++ ide with working code completion? http://stackoverflow.com/questions/1420341/where-can-i-download-a-free-c-ide-with-working-code-completion download a c compiler with code completion that doesn't suck like the back end of a donkey. I have tried Eclipse but that..
std::function vs template http://stackoverflow.com/questions/14677997/stdfunction-vs-template is that they are horribly slow. I tested it and they truly suck in comparison with templates. #include iostream #include functional..
Are all macros evil? [duplicate] http://stackoverflow.com/questions/319452/are-all-macros-evil how to do so then assess whether to use a macro or just suck it up and write things out longhand each time. The thing about..
|