Adjust placement of @safe for better readability

This commit is contained in:
Elias Batek 2024-08-18 03:39:20 +02:00
parent 997a7c8fd5
commit 8a68748bd6
1 changed files with 2 additions and 2 deletions

View File

@ -176,8 +176,6 @@ private @safe {
+/ +/
final class PixmapRecorder : OutputRange!(const(Pixmap)) { final class PixmapRecorder : OutputRange!(const(Pixmap)) {
@safe:
private { private {
string _ffmpegExecutablePath; string _ffmpegExecutablePath;
double _frameRate; double _frameRate;
@ -192,6 +190,8 @@ final class PixmapRecorder : OutputRange!(const(Pixmap)) {
bool _outputIsOurs = false; bool _outputIsOurs = false;
} }
@safe:
private this( private this(
string ffmpegExecutablePath, string ffmpegExecutablePath,
double frameRate, double frameRate,