c++ Programming Glossary: bug
C++ Singleton design pattern http://stackoverflow.com/questions/1008019/c-singleton-design-pattern the memory is going to be deallocated Or is there a bug and memory leak It seems like there is a problem in the implementation...
Any reason to overload global new and delete? http://stackoverflow.com/questions/1152511/any-reason-to-overload-global-new-and-delete but doing these things globally Addition I've just found a bug in an overloaded delete function memory wasn't always freed... overloads because it's convenient to hang lots of common debugging functionality there as well as make sweeping improvements.. overloads. Take a look at some of the allocators and debugging systems that are out there for C C and you'll rapidly come..
Static linking vs dynamic linking http://stackoverflow.com/questions/1993390/static-linking-vs-dynamic-linking there is a risk of DLL hell. Dynamic linking means that bug fixes and upgrades to libraries propagate to improve your product..
Reading from text file until EOF repeats last line http://stackoverflow.com/questions/21647/reading-from-text-file-until-eof-repeats-last-line if iFile.eof break cerr x endl By the way there is another bug in your code. Did you ever try to run it on an empty file The..
non-class rvalues always have cv-unqualified types http://stackoverflow.com/questions/2169932/non-class-rvalues-always-have-cv-unqualified-types yet bar prefers to bind to const int . Is this a compiler bug EDIT Apparently this is also a const rvalue EDIT This issue..
How does C compute sin() and other math functions? http://stackoverflow.com/questions/2284860/how-does-c-compute-sin-and-other-math-functions
What do 'statically linked' and 'dynamically linked' mean? http://stackoverflow.com/questions/311882/what-do-statically-linked-and-dynamically-linked-mean both good and bad on one hand it allows easier updates and bug fixes on the other it can lead to programs ceasing to work if.. can drop in a new DLL at any time to provide updates or bug fixes. As stated earlier this has both advantages and disadvantages...
How to set up unit testing for Visual Studio C++ http://stackoverflow.com/questions/3150/how-to-set-up-unit-testing-for-visual-studio-c seems to be another rewrite with more features and bug fixes. I also just stumbled across UnitTest which includes stuff..
When and why will an OS initialise memory to 0xCD, 0xDD, etc. on malloc/free/new/delete? http://stackoverflow.com/questions/370195/when-and-why-will-an-os-initialise-memory-to-0xcd-0xdd-etc-on-malloc-free-new Why My understanding is this only occurs in Win32 debug configuration and it is used to detect memory overruns and to.. in Win32 which will result in exceptions showing in the debugger. How portable is this c c memory memory management share.. bits of unowned uninitialized memory when compiled for debug mode support may vary by compiler version Value Name Description..
Does the C++ standard mandate poor performance for iostreams, or am I just dealing with a poor implementation? [closed] http://stackoverflow.com/questions/4340396/does-the-c-standard-mandate-poor-performance-for-iostreams-or-am-i-just-deali have little impact on the final results. EDIT Oops found a bug in the vector with ordinary iterator the iterator wasn't being..
Is there any reason to check for a NULL pointer before deleting? http://stackoverflow.com/questions/615355/is-there-any-reason-to-check-for-a-null-pointer-before-deleting
Why do I need to use typedef typename in g++ but not VS? http://stackoverflow.com/questions/642229/why-do-i-need-to-use-typedef-typename-in-g-but-not-vs VS and I guess ICC don't. Is the typedef typename thing a bug or an overstrict standard or something that is left up to the..
Subclass/inherit standard containers? http://stackoverflow.com/questions/6806173/subclass-inherit-standard-containers a USB class or a Telephony class. And now if you find a bug you have to fix it in all three places which won't always happen.. in all three places which won't always happen which means bugs will take longer and not always get fixed... This is general..
Create WCF service for unmanaged C++ clients http://stackoverflow.com/questions/686452/create-wcf-service-for-unmanaged-c-clients General settings change the Output Directory to .. bin Debug. Under the C C General settings add .. HelloServiceClientBridge.. Directories. Under the Linker General settings add .. Debug to the Additional Library Directories. Click the OK button... In the Build tab change the output path to .. bin Debug so the assembly and app.config file will be in the same directory..
casting unused return values to void http://stackoverflow.com/questions/689677/casting-unused-return-values-to-void off since it's unnecessary noise. I'll eat my words if a bug escapes because of it... c c void share improve this question..
Why does integer overflow on x86 with GCC cause an infinite loop? http://stackoverflow.com/questions/7682477/why-does-integer-overflow-on-x86-with-gcc-cause-an-infinite-loop 4.5.2 8ubuntu4 ~ Desktop So the question is Is this a bug in GCC Or did I misunderstand something about how GCC handles.. I'm tagging this C as well because I assume this bug will reproduce in C. I haven't verified it yet. EDIT Here's..
Why vector<bool>::reference doesn't return reference to bool? http://stackoverflow.com/questions/8399417/why-vectorboolreference-doesnt-return-reference-to-bool Is vector bool reference not bool Or is it a compiler's bug Or am I trying something stupid c compiler errors g share..
Why is reading lines from stdin much slower in C++ than Python? http://stackoverflow.com/questions/9371238/why-is-reading-lines-from-stdin-much-slower-in-c-than-python approach is slower in C Edit for clarity removed tiny bug in original code that wasn't related to the question. c python..
Bug with pixel access in OpenCV 2.x http://stackoverflow.com/questions/12463677/bug-with-pixel-access-in-opencv-2-x with pixel access in OpenCV 2.x I'm having trouble trying to..
C++11 reentrant class locking strategy http://stackoverflow.com/questions/13240015/c11-reentrant-class-locking-strategy need to be retested upon entering a unique locked area Bug fixes or Impl API changes don't require recompiling the entire..
Floating point comparison revisited http://stackoverflow.com/questions/13940316/floating-point-comparison-revisited a b and almostEqual b c does not imply almostEqual a c . A Bug in Extreme Cases almostEqual 1.f 1.f 11 0x745d17 incorrectly..
Order of evaluation of elements in list-initialization http://stackoverflow.com/questions/14060264/order-of-evaluation-of-elements-in-list-initialization in the future. Yes. It is a bug in the GCC compiler. Bug 51253 C 11 DR 1030 Evaluation order sequenced before relation..
Exceptional C++[Bug]? http://stackoverflow.com/questions/3039615/exceptional-cbug C Bug I have been reading Exceptional C by Herb Sutter . On reaching..
How to pass an array size as a template with template type? http://stackoverflow.com/questions/472530/how-to-pass-an-array-size-as-a-template-with-template-type
Template instantiation details of GCC and MS compilers http://stackoverflow.com/questions/7182359/template-instantiation-details-of-gcc-and-ms-compilers compiler do not necessarily implement the POIs correctly Bug c 41995 Incorrect point of instantiation for function template..
Remote debugging with Eclipse CDT http://stackoverflow.com/questions/81194/remote-debugging-with-eclipse-cdt finally I got gdb run remotly anyhow now. At the Bug symbol on the taskbar I took Debug Configurations GDB Hardware..
|