Mark DitheringMatrix as final (related to b1d73960809eca019885be20a8bcee60de92ed32)

This commit is contained in:
David Capello 2025-02-10 17:44:58 -03:00
parent b1d7396080
commit 56651c6bff

View File

@ -1,5 +1,5 @@
// Aseprite Render Library
// Copyright (c) 2020 Igara Studio S.A.
// Copyright (c) 2020-2025 Igara Studio S.A.
// Copyright (c) 2017 David Capello
//
// This file is released under the terms of the MIT license.
@ -14,7 +14,7 @@
namespace render {
class DitheringMatrix {
class DitheringMatrix final {
public:
DitheringMatrix() : m_rows(1), m_cols(1), m_matrix(1, 1), m_maxValue(1) {}