Open GoogleCodeExporter opened 9 years ago
By "work" I mean you install crashrpt into your application and the
CrashCallback function is triggered if you execute code such as:
std::vector<bool> vb(3, false);
vb[5] = true;
assuming you setup crashrpt to listen for those kinds of crashes.
Original comment by ABrussZ...@gmail.com
on 28 Aug 2014 at 4:03
It appears the issue was the c++ runtime behavior has changed such that things
that used to trigger crashes do not anymore.
For example this used to cause a crash:
std::vector<int> blah(4, 0.0);
double dval = blah[4];
and does not anymore. C'est la vie. This case can be closed.
Original comment by ABrussZ...@gmail.com
on 17 Oct 2014 at 8:25
Our app has not worked (the callback has not worked) for the past several
months. We upgraded to vs2013 at about the same time but suspect some windows
update might have been the reason. Can somebody confirm this library still
works with an up to date Win7 and building with vs2013?
Original comment by edwinche...@gmail.com
on 4 Feb 2015 at 1:18
Original issue reported on code.google.com by
ABrussZ...@gmail.com
on 28 Aug 2014 at 4:00