ladybird/Libraries/LibWeb/Namespace.cpp

17 lines
333 B
C++
Raw Normal View History

2020-10-10 02:48:05 +01:00
/*
* Copyright (c) 2020, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
2020-10-10 02:48:05 +01:00
*/
#include <LibWeb/Namespace.h>
namespace Web::Namespace {
#define __ENUMERATE_NAMESPACE(name, namespace_) \
FlyString const& name = *new FlyString(namespace_##_fly_string);
ENUMERATE_NAMESPACES
2020-10-10 02:48:05 +01:00
#undef __ENUMERATE_NAMESPACE
}