From 89bac537165bf262594cca343cb45e16a2167145 Mon Sep 17 00:00:00 2001
From: Kimplul <kimi.h.kuparinen@gmail.com>
Date: Mon, 6 Jan 2025 01:05:21 +0200
Subject: implement move checking further

+ Enough that examples still compile, but missing references etc.
---
 lib/fwdlib.hpp | 5 +++++
 1 file changed, 5 insertions(+)

(limited to 'lib')

diff --git a/lib/fwdlib.hpp b/lib/fwdlib.hpp
index 5c52f65..bb5084c 100644
--- a/lib/fwdlib.hpp
+++ b/lib/fwdlib.hpp
@@ -35,6 +35,11 @@ static void fwd_some(auto option, auto ok, auto fail)
 		return fail();
 }
 
+static void fwd_copy(auto n, auto next)
+{
+	return next(n, n);
+}
+
 static void fwd_insert(auto container, auto elem, auto next)
 {
 	container.insert(std::move(elem));
-- 
cgit v1.2.3