Add missing iostream include in a README example, closes #218

This commit is contained in:
Jeremy Rifkin 2025-02-22 00:01:02 -06:00
parent 1940dc607a
commit e6d55b5e7d
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -465,6 +465,8 @@ thrown exception object, with minimal or no overhead in the non-throwing path:
```cpp
#include <cpptrace/from_current.hpp>
#include <iostream>
void foo() {
throw std::runtime_error("foo failed");
}