Files
ladybird/Libraries/LibGfx
Lenny Maiorani d1fe6a0b53 Everywhere: Redundant inline specifier on constexpr functions (#3807)
Problem:
- `constexpr` functions are decorated with the `inline` specifier
  keyword. This is redundant because `constexpr` functions are
  implicitly `inline`.
- [dcl.constexpr], §7.1.5/2 in the C++11 standard): "constexpr
  functions and constexpr constructors are implicitly inline (7.1.2)".

Solution:
- Remove the redundant `inline` keyword.
2020-10-20 18:08:13 +02:00
..
2020-10-02 16:03:17 +02:00
2020-06-21 10:08:25 +02:00
2020-09-29 09:20:33 +02:00
2020-07-25 02:13:43 +02:00
2020-10-12 20:04:48 +02:00