Martin Hořeňovský cd6de9cd34 Don't reconstruct expression on encountering fatal error
In some cases, like when given

```cpp
std::vector<char>* str =
reinterpret_cast<std::vector<char>*>(0x1234458);
CHECK(*str == std::vector<char>());
```

reconstructing the expression to report it would cause another fatal
error. Instead we just put together an AssertionResult without
reconstructing the expression fully.

This should fully fix #810
2017-03-02 18:18:28 +01:00
..
2014-03-17 18:40:58 +00:00
2017-02-14 09:16:54 +00:00
2017-02-13 14:12:22 +01:00
2017-02-22 08:26:52 +00:00
2014-05-19 18:57:14 +01:00
2015-07-01 07:33:27 +01:00
2015-07-28 18:55:11 +01:00
2017-02-13 14:12:22 +01:00
2014-06-30 07:33:17 +01:00
2014-06-30 07:33:17 +01:00
2014-03-17 18:40:58 +00:00
2017-03-01 16:04:44 +00:00