From 2a12df337dd64a3c446319fd7fa26ab6164f2073 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 18 Aug 2024 01:17:49 +0200 Subject: [PATCH] Mark PixmapRecorder as Output Range Because why not? :P --- pixmaprecorder.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pixmaprecorder.d b/pixmaprecorder.d index 011e972..99103d0 100644 --- a/pixmaprecorder.d +++ b/pixmaprecorder.d @@ -72,6 +72,7 @@ import arsd.pixmappaint; import std.format; import std.path : buildPath; import std.process; +import std.range : OutputRange; import std.sumtype; import std.stdio : File; @@ -100,7 +101,7 @@ private @safe { alias RecorderOutput = SumType!(string, File); } -final class PixmapRecorder { +final class PixmapRecorder : OutputRange!Pixmap { @safe: