diff options
author | Chris Robinson <[email protected]> | 2018-12-24 19:29:01 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-24 19:29:01 -0800 |
commit | fbae41020d8968d0e65af08584df4736b5ed7239 (patch) | |
tree | b2bb3297e5e5b4cf348e4e9379dfa4366dd8aa2d /Alc/backends/null.cpp | |
parent | 194e7ff815d744830c8aaedfb0d32ed3c3d01645 (diff) |
Remove extraneous typedef, struct, and enum keywords
Diffstat (limited to 'Alc/backends/null.cpp')
-rw-r--r-- | Alc/backends/null.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/null.cpp b/Alc/backends/null.cpp index 969193b8..fb113077 100644 --- a/Alc/backends/null.cpp +++ b/Alc/backends/null.cpp @@ -180,7 +180,7 @@ bool NullBackendFactory::init() bool NullBackendFactory::querySupport(ALCbackend_Type type) { return (type == ALCbackend_Playback); } -void NullBackendFactory::probe(enum DevProbe type, std::string *outnames) +void NullBackendFactory::probe(DevProbe type, std::string *outnames) { switch(type) { |