Skip to content

Commit

Permalink
gamestate: Don't inline component type getters.
Browse files Browse the repository at this point in the history
  • Loading branch information
heinezen committed Aug 10, 2023
1 parent 55eb1c5 commit 9a311ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libopenage/gamestate/component/api/idle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace openage::gamestate::component {

inline component_t Idle::get_type() const {
component_t Idle::get_type() const {
return component_t::IDLE;
}

Expand Down
2 changes: 1 addition & 1 deletion libopenage/gamestate/component/api/live.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace openage::gamestate::component {

inline component_t Live::get_type() const {
component_t Live::get_type() const {
return component_t::LIVE;
}

Expand Down
2 changes: 1 addition & 1 deletion libopenage/gamestate/component/api/move.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace openage::gamestate::component {

inline component_t Move::get_type() const {
component_t Move::get_type() const {
return component_t::MOVE;
}

Expand Down

0 comments on commit 9a311ce

Please sign in to comment.