From e6d55b5e7d64ce780d50e0ab31742e96f0c1153e Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sat, 22 Feb 2025 00:01:02 -0600 Subject: [PATCH] Add missing iostream include in a README example, closes #218 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 996c5e6..f41cf00 100644 --- a/README.md +++ b/README.md @@ -465,6 +465,8 @@ thrown exception object, with minimal or no overhead in the non-throwing path: ```cpp #include +#include + void foo() { throw std::runtime_error("foo failed"); }