summaryrefslogtreecommitdiff
path: root/src/sound/cocoa_s.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/cocoa_s.h')
-rw-r--r--src/sound/cocoa_s.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sound/cocoa_s.h b/src/sound/cocoa_s.h
index 701091425..dd2d74020 100644
--- a/src/sound/cocoa_s.h
+++ b/src/sound/cocoa_s.h
@@ -16,16 +16,16 @@
class SoundDriver_Cocoa : public SoundDriver {
public:
- /* virtual */ const char *Start(const char * const *param);
+ const char *Start(const char * const *param) override;
- /* virtual */ void Stop();
- /* virtual */ const char *GetName() const { return "cocoa"; }
+ void Stop() override;
+ const char *GetName() const override { return "cocoa"; }
};
class FSoundDriver_Cocoa : public DriverFactoryBase {
public:
FSoundDriver_Cocoa() : DriverFactoryBase(Driver::DT_SOUND, 10, "cocoa", "Cocoa Sound Driver") {}
- /* virtual */ Driver *CreateInstance() const { return new SoundDriver_Cocoa(); }
+ Driver *CreateInstance() const override { return new SoundDriver_Cocoa(); }
};
#endif /* SOUND_COCOA_H */