mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:32:45 +00:00 
			
		
		
		
	 3ff81dcb65
			
		
	
	
		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.
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 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;
 | |
| }
 | |
| 
 | |
| }
 |