From fbae41020d8968d0e65af08584df4736b5ed7239 Mon Sep 17 00:00:00 2001 From: Chris Robinson <chris.kcat@gmail.com> Date: Mon, 24 Dec 2018 19:29:01 -0800 Subject: Remove extraneous typedef, struct, and enum keywords --- Alc/backends/sdl2.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Alc/backends/sdl2.cpp') diff --git a/Alc/backends/sdl2.cpp b/Alc/backends/sdl2.cpp index f0c98fab..d61e0a1b 100644 --- a/Alc/backends/sdl2.cpp +++ b/Alc/backends/sdl2.cpp @@ -44,8 +44,8 @@ struct ALCsdl2Backend final : public ALCbackend { ALsizei frameSize; ALuint Frequency; - enum DevFmtChannels FmtChans; - enum DevFmtType FmtType; + DevFmtChannels FmtChans; + DevFmtType FmtType; ALuint UpdateSize; }; @@ -233,7 +233,7 @@ bool SDL2BackendFactory::querySupport(ALCbackend_Type type) return (type == ALCbackend_Playback); } -void SDL2BackendFactory::probe(enum DevProbe type, std::string *outnames) +void SDL2BackendFactory::probe(DevProbe type, std::string *outnames) { if(type != ALL_DEVICE_PROBE) return; -- cgit v1.2.3