mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:17:36 +00:00
Userland: Change static const variables to static constexpr
`static const` variables can be computed and initialized at run-time during initialization or the first time a function is called. Change them to `static constexpr` to ensure they are computed at compile-time. This allows some removal of `strlen` because the length of the `StringView` can be used which is pre-computed at compile-time.
This commit is contained in:
parent
31515a9147
commit
f912a48315
23 changed files with 111 additions and 82 deletions
|
@ -22,8 +22,8 @@ class Game final : public GUI::Frame {
|
|||
C_OBJECT(Game);
|
||||
|
||||
public:
|
||||
static const int game_width = 560;
|
||||
static const int game_height = 480;
|
||||
static constexpr int game_width = 560;
|
||||
static constexpr int game_height = 480;
|
||||
|
||||
Function<u32(u32)> on_game_end;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue