c++ Programming Glossary: investigation
floating point precision http://stackoverflow.com/questions/1201051/floating-point-precision result is wrong because of too small precision. After some investigation i figured out that someone is setting the floating point precision..
Redeclaration of a variable in a for-loop in C++ http://stackoverflow.com/questions/12351460/redeclaration-of-a-variable-in-a-for-loop-in-c that it was failing on some namely IBM's xlC_r. Further investigation has found that it also fails on comeau and clang. It compiles..
Incorrect overload resolution for 2-argument functions http://stackoverflow.com/questions/14295217/incorrect-overload-resolution-for-2-argument-functions of the 1 argument functions and deserves further investigation by the VS Team. c visual studio 2012 overload resolution ..
Detect SD Card insertion from a Windows service? http://stackoverflow.com/questions/14607564/detect-sd-card-insertion-from-a-windows-service code that uses SHChangeNotifyRegister but upon further investigation I've only been able to get it working from a window application...
Can one leverage std::basic_string to implement a string having a length limitation? http://stackoverflow.com/questions/1591591/can-one-leverage-stdbasic-string-to-implement-a-string-having-a-length-limitat have to do so when performing the translation. My initial investigation suggests that this is not possible without writing my own string..
Stack Size Estimation http://stackoverflow.com/questions/1756285/stack-size-estimation system and processor are all known quantities for this investigation. Let's also assume recursion isn't used so we're not dealing..
At what point is it worth using a database? http://stackoverflow.com/questions/2648802/at-what-point-is-it-worth-using-a-database is easier to achieve. One of the big issues in problem investigation is that teams are not using the same data. The customer may..
Are all macros evil? [duplicate] http://stackoverflow.com/questions/319452/are-all-macros-evil of assembly code for this single function call. Further investigation reveled this œfunction was simply a macro which called several..
How to resolve pointer alias issues? http://stackoverflow.com/questions/3674814/how-to-resolve-pointer-alias-issues that's what happens when you rely too much on memory of an investigation that was done months ago. EDIT Actually node 1 as root is an..
Is the size of a struct required to be an exact multiple of the alignment of that struct? http://stackoverflow.com/questions/4637774/is-the-size-of-a-struct-required-to-be-an-exact-multiple-of-the-alignment-of-tha a unit test and the test surprised me by passing. A bit of investigation showed that the sizeof the type I used for the test similar..
/MT and /MD builds crashing, but only when debugger isn't attached: how to debug? [duplicate] http://stackoverflow.com/questions/811951/mt-and-md-builds-crashing-but-only-when-debugger-isnt-attached-how-to-debug of boost 1.36 vs 1.38 . Before dropping back to manual investigation of the code or feeding this to PC Lint and combing through its..
std::lower_bound slower for std::vector than std::map::find http://stackoverflow.com/questions/8784732/stdlower-bound-slower-for-stdvector-than-stdmapfind should be a lot better than using std map K T I feel the investigation isn't over yet. Addendum Rethinking the exercise a bit more..
|