LibGfx/JPEGXL: Make JPEGXLLoadingContext non [copy,move]able

This commit is contained in:
Lucas CHOLLET 2024-07-22 17:55:11 -04:00 committed by Andreas Kling
parent b659b62dec
commit d9a2c62ed4
Notes: github-actions[bot] 2024-07-23 07:00:30 +00:00

View file

@ -12,6 +12,9 @@
namespace Gfx {
class JPEGXLLoadingContext {
AK_MAKE_NONCOPYABLE(JPEGXLLoadingContext);
AK_MAKE_NONMOVABLE(JPEGXLLoadingContext);
public:
JPEGXLLoadingContext(JxlDecoder* decoder)
: m_decoder(decoder)