aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/stubs/wtf/text/StringBuilder.h
blob: d51c0c7c2167a39b464766f8deb54b08de89b231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#pragma once

#include <wtf/text/WTFString.h>

namespace WTF {

struct StringBuilder : public String
{
    String toString() const { return *this; }
};

}

using WTF::StringBuilder;