LibMedia: Move the bitwise operators for FrameFlags to Media::

This commit is contained in:
Zaggy1024 2026-04-23 17:57:54 -05:00 committed by Gregory Bertilson
parent 14a85b0c33
commit 16f1f19aa3

View file

@ -15,7 +15,6 @@ enum class FrameFlags : u8 {
None = 0,
Keyframe = 1 << 0,
};
AK_ENUM_BITWISE_OPERATORS(FrameFlags);
}
AK_ENUM_BITWISE_OPERATORS(Media::FrameFlags);