mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:07:45 +00:00
Everywhere: Remove needless trailing semi-colons after functions
This is a new option in clang-format-16.
This commit is contained in:
parent
aff81d318b
commit
c911781c21
243 changed files with 483 additions and 481 deletions
|
@ -207,17 +207,17 @@ private:
|
|||
|
||||
virtual ErrorOr<void> on_enter() { return {}; }
|
||||
|
||||
virtual ErrorOr<void> play() { return {}; };
|
||||
virtual ErrorOr<void> play() { return {}; }
|
||||
virtual bool is_playing() const = 0;
|
||||
virtual PlaybackState get_state() const = 0;
|
||||
virtual ErrorOr<void> pause() { return {}; };
|
||||
virtual ErrorOr<void> buffer() { return {}; };
|
||||
virtual ErrorOr<void> pause() { return {}; }
|
||||
virtual ErrorOr<void> buffer() { return {}; }
|
||||
virtual ErrorOr<void> seek(Duration target_timestamp, SeekMode);
|
||||
virtual ErrorOr<void> stop();
|
||||
|
||||
virtual Duration current_time() const;
|
||||
|
||||
virtual ErrorOr<void> do_timed_state_update() { return {}; };
|
||||
virtual ErrorOr<void> do_timed_state_update() { return {}; }
|
||||
|
||||
protected:
|
||||
template<class T, class... Args>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue