c++ Programming Glossary: fool
Deterministic builds under Windows http://stackoverflow.com/questions/1180852/deterministic-builds-under-windows a way to either force compiler to use relative paths or to fool it into thinking the path is not what it is Reason for the last..
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 and everything suddenly went so much faster EDIT I'm not a fool and I don't access elements in the middle of the lists. The..
How come a non-const reference cannot bind to a temporary object? http://stackoverflow.com/questions/1565600/how-come-a-non-const-reference-cannot-bind-to-a-temporary-object modify the temporary object. In addition ref allows you to fool the compiler and get a link to this temporary object and that.. on how to do it. Going against the language and fooling the compiler rarely solves problems usually it creates problems...
Load multiple copies of dll in same process http://stackoverflow.com/questions/1587176/load-multiple-copies-of-dll-in-same-process choices Copy hardlink symlink and or use reparse points to fool the loader into thinking you have multiple distinct DLLs. Use..
Multiple definition of inline functions when linking static libs http://stackoverflow.com/questions/2217628/multiple-definition-of-inline-functions-when-linking-static-libs 717622 static lib multiple definition problem This fool renamed all his C code as C files and his C code wasn't C safe..
When did “and” become an operator in C++ http://stackoverflow.com/questions/2419805/when-did-and-become-an-operator-in-c unqualified id before ' ' token so after cursing the fool that defined and as I added #ifdef and #undef and #endif and..
CRC32 C or C++ implementation http://stackoverflow.com/questions/302914/crc32-c-or-c-implementation isn't good enough. I'd prefer non LGPL so I don't have to fool around with a DLL my app is closed source . I saw the adler32..
Beyond Stack Sampling: C++ Profilers http://stackoverflow.com/questions/4394606/beyond-stack-sampling-c-profilers data visualization is gprof2dot . Don't let the name fool you it handles all kinds of sampling profiler output AQtime..
Shortest Program in c++ http://stackoverflow.com/questions/4549214/shortest-program-in-c a global function called main 3.6.1p1 . Those programs may fool some compilers because they define a symbol main but that symbol..
nested classes C++ http://stackoverflow.com/questions/4571355/nested-classes-c they need to maintain backwards compatability with some fool who decided they wanted to use the Node class that was hidden..
Program crashes when trying to set a character of a char array http://stackoverflow.com/questions/5007369/program-crashes-when-trying-to-set-a-character-of-a-char-array instead of making a new copy of the whole array so you can fool around with it. He demonstrated this with similar code like..
C/C++: How to do AES decryption using OpenSSL http://stackoverflow.com/questions/5132939/c-c-how-to-do-aes-decryption-using-openssl time I needed to use OpenSSL. Don't let the silly title fool you it should have been titled just OpenSSL . Oh well. Edit..
May std::vector make use of small buffer optimization? http://stackoverflow.com/questions/8190950/may-stdvector-make-use-of-small-buffer-optimization copy being done . The next text appears to be harder to fool Every iterator referring to an element in one container before..
Why is strncpy insecure? http://stackoverflow.com/questions/869883/why-is-strncpy-insecure terminating null is added before the strncpy which might fool a scanner into thinking that the buffer is unterminated. The..
|