From e76d38c317a630067a5a8870b85c96efd6c87d8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Angelovi=C4=8D?= Date: Fri, 22 Dec 2023 23:58:01 +0100 Subject: [PATCH] fix: add missing header to ScopeGuard.h --- src/ScopeGuard.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ScopeGuard.h b/src/ScopeGuard.h index d64a5ed..0726317 100644 --- a/src/ScopeGuard.h +++ b/src/ScopeGuard.h @@ -29,6 +29,7 @@ #include #include +#include // Straightforward, modern, easy-to-use RAII utility to perform work on scope exit in an exception-safe manner. //