Skip to content

Commit c11a351

Browse files
committed
"static inline constexpr" -> "static constexpr"
1 parent 29ca7ba commit c11a351

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

speeduino/pages.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ bool operator!=(const entity_page_location_t &lhs, const entity_page_location_t
4545
// calling context.
4646

4747
template <class table_t>
48-
static inline constexpr uint16_t get_table_value_end(void)
48+
static constexpr uint16_t get_table_value_end(void)
4949
{
5050
return table_t::xaxis_t::length*table_t::yaxis_t::length;
5151
}
5252
template <class table_t>
53-
static inline constexpr uint16_t get_table_axisx_end(void)
53+
static constexpr uint16_t get_table_axisx_end(void)
5454
{
5555
return get_table_value_end<table_t>()+table_t::xaxis_t::length;
5656
}
5757
template <class table_t>
58-
static inline constexpr uint16_t get_table_axisy_end(const table_t *table)
58+
static constexpr uint16_t get_table_axisy_end(const table_t *table)
5959
{
6060
UNUSED(table);
6161
return get_table_axisx_end<table_t>()+table_t::yaxis_t::length;

0 commit comments

Comments
 (0)