From efccb11513faf3d8f1b0e22ffa084f84eb873f86 Mon Sep 17 00:00:00 2001 From: alandefreitas Date: Tue, 12 Nov 2024 19:08:24 -0300 Subject: [PATCH] refactor: deduction guides for CTAD warnings --- src/lib/Dom/LazyObject.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/Dom/LazyObject.hpp b/src/lib/Dom/LazyObject.hpp index d20a0be60..f078933b8 100644 --- a/src/lib/Dom/LazyObject.hpp +++ b/src/lib/Dom/LazyObject.hpp @@ -266,6 +266,10 @@ namespace detail } } }; + + // Deduction guide + template + LazyObjectIO(MapFn, DeferFn = {}) -> LazyObjectIO; } template