From 9e7cd3493dcf1587bfb7f888631e2e7957581c14 Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Fri, 15 Nov 2024 08:40:16 -0700 Subject: [PATCH] :bug: Add missing include to `flow/impl.hpp` Problem: - `flow/impl.hpp` references `flow::get_log_spec` but does not include `flow/log.hpp`. Solution: - Add the include. --- include/flow/impl.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/flow/impl.hpp b/include/flow/impl.hpp index 36a86215..16f6d643 100644 --- a/include/flow/impl.hpp +++ b/include/flow/impl.hpp @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include