1 | // Copyright (C) 2018 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | #pragma once |
4 | |
5 | #include <wtf/text/WTFString.h> |
6 | |
7 | namespace WTF { |
8 | |
9 | struct StringBuilder : public String |
10 | { |
11 | String toString() const { return *this; } |
12 | }; |
13 | |
14 | } |
15 | |
16 | using WTF::StringBuilder; |
17 |