From 647c19997ddc6c8f7afab48405c96b3f6566cf03 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 13 Oct 2024 19:17:26 +0200 Subject: [PATCH] Improve Pixmap.clone() --- pixmappaint.d | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index dd58e90..180b133 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -477,13 +477,13 @@ struct Pixmap { } /++ - Creates a $(I deep clone) of the Pixmap + Creates a $(I deep copy) of the Pixmap +/ Pixmap clone() const { - auto c = Pixmap(); - c.width = this.width; - c.data = this.data.dup; - return c; + return Pixmap( + this.data.dup, + this.width, + ); } /++