Skip to content

Commit

Permalink
Update misc_events.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-johansson committed Jun 15, 2023
1 parent 400e2fa commit adc6045
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/centurion/events/misc_events.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ enum class display_event_id {
disconnected = SDL_DISPLAYEVENT_DISCONNECTED,
};

/// \name Display event ID functions
/// \{

[[nodiscard]] constexpr auto to_string(const display_event_id id) -> std::string_view
{
switch (id) {
Expand All @@ -98,8 +95,6 @@ inline auto operator<<(std::ostream& stream, const display_event_id id) -> std::
return stream << to_string(id);
}

/// \} End of display event ID functions

class display_event final : public event_base<SDL_DisplayEvent> {
public:
display_event() : event_base {event_type::display} {}
Expand Down

0 comments on commit adc6045

Please sign in to comment.