mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "IntegerStyleValue.h"
 | |
| 
 | |
| namespace Web::CSS {
 | |
| 
 | |
| String IntegerStyleValue::to_string() const
 | |
| {
 | |
|     return MUST(String::number(m_value));
 | |
| }
 | |
| 
 | |
| }
 | 
