From 1eefd5f51c228db8d29d64714521d5ea24e43b33 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 26 Nov 2023 18:49:21 -0500 Subject: concise wordwrap --- source/types.hpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'source/types.hpp') diff --git a/source/types.hpp b/source/types.hpp index fd0b81e..9627a47 100644 --- a/source/types.hpp +++ b/source/types.hpp @@ -100,13 +100,10 @@ struct WordSet * and used for a word's definition. */ template -auto WordWrap = [] { - constexpr static Func list[1] = { - +[] { (funcs(), ...); } - }; - - return list; -}; +constexpr auto WordWrap = []() noexcept { + constexpr static auto wrapper = +[] { (funcs(), ...); }; + return &wrapper; +}(); enum class Error : int { none = 1, -- cgit v1.2.3