[Scummvm-git-logs] scummvm master -> d59245a1653edb3311f778826fd09f318cfe895e

whoozle noreply at scummvm.org
Tue Feb 10 00:16:31 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
d59245a165 PHOENIXVR: remove VR default ctor/operators declarations


Commit: d59245a1653edb3311f778826fd09f318cfe895e
    https://github.com/scummvm/scummvm/commit/d59245a1653edb3311f778826fd09f318cfe895e
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-02-10T00:16:09Z

Commit Message:
PHOENIXVR: remove VR default ctor/operators declarations

Changed paths:
    engines/phoenixvr/vr.cpp
    engines/phoenixvr/vr.h


diff --git a/engines/phoenixvr/vr.cpp b/engines/phoenixvr/vr.cpp
index 979db3bd30d..51e62d9f8b2 100644
--- a/engines/phoenixvr/vr.cpp
+++ b/engines/phoenixvr/vr.cpp
@@ -188,11 +188,6 @@ void unpack(Graphics::Surface &pic, const byte *huff, uint huffSize, const byte
 }
 } // namespace
 
-VR::~VR() noexcept = default;
-VR::VR() noexcept = default;
-VR::VR(VR &&) noexcept = default;
-VR &VR::operator=(VR &&) noexcept = default;
-
 VR VR::loadStatic(const Graphics::PixelFormat &format, Common::SeekableReadStream &s) {
 	VR vr;
 	auto magic = s.readUint32LE();
diff --git a/engines/phoenixvr/vr.h b/engines/phoenixvr/vr.h
index e6527881244..bc1de1a2194 100644
--- a/engines/phoenixvr/vr.h
+++ b/engines/phoenixvr/vr.h
@@ -62,11 +62,6 @@ class VR {
 	Common::RandomSource _rnd = {"vr"};
 
 public:
-	~VR() noexcept;
-	VR() noexcept;
-	VR(VR &&) noexcept;
-	VR &operator=(VR &&) noexcept;
-
 	static VR loadStatic(const Graphics::PixelFormat &format, Common::SeekableReadStream &s);
 	void render(Graphics::Screen *screen, float ax, float ay, float fov, float dt, RegionSet *regSet);
 	bool isVR() const { return _vr; }




More information about the Scummvm-git-logs mailing list