mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-25 03:36:36 +00:00
LibGfx/JPEGXL: Make JPEGXLLoadingContext non [copy,move]able
This commit is contained in:
parent
b659b62dec
commit
d9a2c62ed4
Notes:
github-actions[bot]
2024-07-23 07:00:30 +00:00
Author: https://github.com/LucasChollet
Commit: d9a2c62ed4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/777
1 changed files with 3 additions and 0 deletions
|
@ -12,6 +12,9 @@
|
||||||
namespace Gfx {
|
namespace Gfx {
|
||||||
|
|
||||||
class JPEGXLLoadingContext {
|
class JPEGXLLoadingContext {
|
||||||
|
AK_MAKE_NONCOPYABLE(JPEGXLLoadingContext);
|
||||||
|
AK_MAKE_NONMOVABLE(JPEGXLLoadingContext);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
JPEGXLLoadingContext(JxlDecoder* decoder)
|
JPEGXLLoadingContext(JxlDecoder* decoder)
|
||||||
: m_decoder(decoder)
|
: m_decoder(decoder)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue