From 14b69032fd4f21145ad4e42a2e6768502888a182 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Sat, 15 Mar 2025 23:58:08 +0100 Subject: [PATCH] fix: move `iolayer` predeclaration to the right namespace --- tools/include/dwarfs/tool/tool.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/include/dwarfs/tool/tool.h b/tools/include/dwarfs/tool/tool.h index 040cf629..14fcda5c 100644 --- a/tools/include/dwarfs/tool/tool.h +++ b/tools/include/dwarfs/tool/tool.h @@ -35,10 +35,11 @@ namespace dwarfs { struct logger_options; -struct iolayer; namespace tool { +struct iolayer; + std::string tool_header(std::string_view tool_name, std::string_view extra_info = "");