From 8a68748bd60d415bab81c572610e4a46ee1e6439 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 18 Aug 2024 03:39:20 +0200 Subject: [PATCH] Adjust placement of @safe for better readability --- pixmaprecorder.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixmaprecorder.d b/pixmaprecorder.d index 19a5dab..8ab1746 100644 --- a/pixmaprecorder.d +++ b/pixmaprecorder.d @@ -176,8 +176,6 @@ private @safe { +/ final class PixmapRecorder : OutputRange!(const(Pixmap)) { -@safe: - private { string _ffmpegExecutablePath; double _frameRate; @@ -192,6 +190,8 @@ final class PixmapRecorder : OutputRange!(const(Pixmap)) { bool _outputIsOurs = false; } +@safe: + private this( string ffmpegExecutablePath, double frameRate,