From 700a011b8098cdfe18b1fa827003e41b687120f8 Mon Sep 17 00:00:00 2001 From: Yuriy Chernyshov Date: Mon, 25 Mar 2024 20:16:23 +0100 Subject: [PATCH] fix: add missing #include (#421) --- src/ScopeGuard.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ScopeGuard.h b/src/ScopeGuard.h index e6af96b..f698d5b 100644 --- a/src/ScopeGuard.h +++ b/src/ScopeGuard.h @@ -27,6 +27,7 @@ #ifndef SDBUS_CPP_INTERNAL_SCOPEGUARD_H_ #define SDBUS_CPP_INTERNAL_SCOPEGUARD_H_ +#include #include // Straightforward, modern, easy-to-use RAII utility to perform work on scope exit in an exception-safe manner.