c++ Programming Glossary: repro
Heap corruption under Win32; how to locate? http://stackoverflow.com/questions/1069/heap-corruption-under-win32-how-to-locate 98 AKA MSVC6 the heap corruption is reasonably easy to reproduce ten or fifteen minutes pass before something fails horrendously.. of 2G of RAM . So I've got a choice between being able to reproduce the problem but not identify the cause or being able to.. or being able to idenify the cause or a problem I can't reproduce. My current best guesses as to where to next is Get an insanely..
Possible compiler bug in Visual C++ 2012 (x86)? http://stackoverflow.com/questions/13051930/possible-compiler-bug-in-visual-c-2012-x86 is definitely a code optimizer bug and I had no trouble reproducing it. Optimizer bugs are usually associated with inlining.. units return scale 9 value units #pragma optimize on Your repro code is very good and Microsoft will have no trouble fixing..
Logging/monitoring all function calls from an application http://stackoverflow.com/questions/152097/logging-monitoring-all-function-calls-from-an-application from the package I provide a link to below and trying to repro the problem until it crashes. Additionally you can have the..
CUDA streams destruction and CudaDeviceReset http://stackoverflow.com/questions/16979982/cuda-streams-destruction-and-cudadevicereset literally required 5 extra lines to make it into a proper repro case someone else could actual compile and run. I find it a..
Cannot access private member in singleton class destructor http://stackoverflow.com/questions/2130864/cannot-access-private-member-in-singleton-class-destructor the version of Visual C you're working with is VC6. I can repro the error with that. At this point I have no suggestion other..
C++ Precision: String to Double http://stackoverflow.com/questions/3202761/c-precision-string-to-double there is lower precision but I need a double. This also is repro when i use atof sscanf and strtod instead of sstream. In C what..
Can optimizations affect the ability to debug a VC++ app using its PDB? http://stackoverflow.com/questions/563000/can-optimizations-affect-the-ability-to-debug-a-vc-app-using-its-pdb code but this isn't always possible some problems only repro with optimized code customer crash dumps are from the released..
Why does this std::sort predicate fail when the class is inside main()? http://stackoverflow.com/questions/6880077/why-does-this-stdsort-predicate-fail-when-the-class-is-inside-main when the class is inside main This is a much simplified repro which illustrates how class Predicate delcared outside main.. a.second b.second pred2 sort a.begin a.end pred2 return 0 repro.cc In function ˜int main repro.cc 30 error no matching function.. a.begin a.end pred2 return 0 repro.cc In function ˜int main repro.cc 30 error no matching function for call to ˜sort __gnu_cxx..
|