mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
3ff81dcb65
This required dealing with a *lot* of fallout, but it's all basically just switching from DeprecatedFlyString to either FlyString or Optional<FlyString> in a hundred places to accommodate the change.
29 lines
544 B
C++
29 lines
544 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Namespace.h>
|
|
|
|
namespace Web::Namespace {
|
|
|
|
#define __ENUMERATE_NAMESPACE(name, namespace_) FlyString name;
|
|
ENUMERATE_NAMESPACES
|
|
#undef __ENUMERATE_NAMESPACE
|
|
|
|
void initialize_strings()
|
|
{
|
|
static bool s_initialized = false;
|
|
VERIFY(!s_initialized);
|
|
|
|
#define __ENUMERATE_NAMESPACE(name, namespace_) \
|
|
name = namespace_##_fly_string;
|
|
ENUMERATE_NAMESPACES
|
|
#undef __ENUMERATE_NAMESPACE
|
|
|
|
s_initialized = true;
|
|
}
|
|
|
|
}
|