mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibWeb: Use modern namespaces and fix clang-format comments in tag names
This commit is contained in:
@@ -26,9 +26,7 @@
|
||||
|
||||
#include <LibWeb/DOM/TagNames.h>
|
||||
|
||||
namespace Web {
|
||||
namespace HTML {
|
||||
namespace TagNames {
|
||||
namespace Web::HTML::TagNames {
|
||||
|
||||
#define __ENUMERATE_HTML_TAG(name) FlyString name;
|
||||
ENUMERATE_HTML_TAGS
|
||||
@@ -37,7 +35,7 @@ ENUMERATE_HTML_TAGS
|
||||
// clang-format off
|
||||
// FIXME: clang-format gets confused here. Why?
|
||||
[[gnu::constructor]] static void initialize()
|
||||
// clang-format off
|
||||
// clang-format on
|
||||
{
|
||||
static bool s_initialized = false;
|
||||
if (s_initialized)
|
||||
@@ -54,5 +52,3 @@ ENUMERATE_HTML_TAGS
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,9 +28,7 @@
|
||||
|
||||
#include <AK/FlyString.h>
|
||||
|
||||
namespace Web {
|
||||
namespace HTML {
|
||||
namespace TagNames {
|
||||
namespace Web::HTML::TagNames {
|
||||
|
||||
#define ENUMERATE_HTML_TAGS \
|
||||
__ENUMERATE_HTML_TAG(a) \
|
||||
@@ -178,5 +176,3 @@ ENUMERATE_HTML_TAGS
|
||||
#undef __ENUMERATE_HTML_TAG
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user