1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:27:35 +00:00

LibWeb: s_initialized should be static in the AttributeNames initialiser

This commit is contained in:
Emanuele Torre 2020-05-27 05:22:50 +02:00 committed by Andreas Kling
parent 5049e41223
commit 8d8c33833f

View file

@ -35,7 +35,7 @@ FlyString class_;
void initialize() void initialize()
{ {
bool s_initialized = false; static bool s_initialized = false;
if (s_initialized) if (s_initialized)
return; return;
id = "id"; id = "id";