fix: add missing #include <exception> (#421)

This commit is contained in:
Yuriy Chernyshov
2024-03-25 20:16:23 +01:00
committed by GitHub
parent 8a9cfc1f19
commit 700a011b80

View File

@ -27,6 +27,7 @@
#ifndef SDBUS_CPP_INTERNAL_SCOPEGUARD_H_
#define SDBUS_CPP_INTERNAL_SCOPEGUARD_H_
#include <exception>
#include <utility>
// Straightforward, modern, easy-to-use RAII utility to perform work on scope exit in an exception-safe manner.