diff options
author | James Rowe <jroweboy@gmail.com> | 2017-01-27 15:02:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-27 15:02:20 -0700 |
commit | 372db835f48fe6e9dbf1e5652469c0a8a7447f58 (patch) | |
tree | 9452354b780d2f678e8259e526f59a16946e19f9 /src/audio_core | |
parent | bf14f4be2263b4769e97800b35951717192c2d1c (diff) | |
parent | 3545b144f1e73248e2e460ec3cc2aa519024a6ce (diff) |
Merge pull request #2478 from jfmherokiller/master
fixed the override warning
Diffstat (limited to 'src/audio_core')
-rw-r--r-- | src/audio_core/sdl2_sink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/sdl2_sink.h b/src/audio_core/sdl2_sink.h index ce75733b7..bcc725369 100644 --- a/src/audio_core/sdl2_sink.h +++ b/src/audio_core/sdl2_sink.h @@ -22,7 +22,7 @@ public: size_t SamplesInQueue() const override; std::vector<std::string> GetDeviceList() const override; - void SetDevice(int device_id); + void SetDevice(int device_id) override; private: struct Impl; |