From 0d9d0fb65c657230fec09bf0391626d50fbdc400 Mon Sep 17 00:00:00 2001 From: Radoslaw Olko Date: Mon, 5 Jun 2023 23:06:15 +0200 Subject: [PATCH] add missing includes --- clutchlog/clutchlog.h | 1 + tests/t-assert.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index 95cbf94..f80e4e9 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -13,6 +13,7 @@ namespace fs = std::filesystem; #endif +#include #include #include #include diff --git a/tests/t-assert.cpp b/tests/t-assert.cpp index b08d238..3c36e22 100644 --- a/tests/t-assert.cpp +++ b/tests/t-assert.cpp @@ -1,5 +1,6 @@ #include #include +#include #include "../clutchlog/clutchlog.h"