mirror of
https://github.com/love2d/love.git
synced 2026-08-19 12:14:20 +02:00
Mark classes as ‘final’
--HG-- branch : minor
This commit is contained in:
@@ -34,7 +34,7 @@ namespace graphics
|
|||||||
namespace opengl
|
namespace opengl
|
||||||
{
|
{
|
||||||
|
|
||||||
class Image : public love::graphics::Image, public Volatile
|
class Image final : public love::graphics::Image, public Volatile
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace graphics
|
|||||||
namespace opengl
|
namespace opengl
|
||||||
{
|
{
|
||||||
|
|
||||||
class Mesh : public love::graphics::Mesh
|
class Mesh final : public love::graphics::Mesh
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace graphics
|
|||||||
namespace opengl
|
namespace opengl
|
||||||
{
|
{
|
||||||
|
|
||||||
class SpriteBatch : public love::graphics::SpriteBatch
|
class SpriteBatch final : public love::graphics::SpriteBatch
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ private:
|
|||||||
|
|
||||||
}; // StreamBufferClientMemory
|
}; // StreamBufferClientMemory
|
||||||
|
|
||||||
class StreamBufferSubDataOrphan : public love::graphics::StreamBuffer, public Volatile
|
class StreamBufferSubDataOrphan final : public love::graphics::StreamBuffer, public Volatile
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user