1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00
ladybird/Userland/Libraries/LibWeb/CSS/StyleValues/IntegerStyleValue.cpp

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));
}
}