1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:47:44 +00:00

Libraries: Change enums to enum classes in LibAudio

This commit is contained in:
Lenny Maiorani 2022-03-17 14:38:24 -06:00 committed by Andreas Kling
parent be360db223
commit d3893a73fb
5 changed files with 22 additions and 22 deletions

View file

@ -12,7 +12,7 @@
namespace Audio {
// Supported PCM sample formats.
enum PcmSampleFormat : u8 {
enum class PcmSampleFormat : u8 {
Uint8,
Int16,
Int24,