Mark PixmapRecorder as Output Range

Because why not? :P
This commit is contained in:
Elias Batek 2024-08-18 01:17:49 +02:00
parent 2f32267898
commit 2a12df337d
1 changed files with 2 additions and 1 deletions

View File

@ -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: