summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/q23utility.cpp
blob: 9c5365c54732a9537b23d94e86245360a69983d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2023 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

#include <QtCore/q23utility.h>

QT_BEGIN_NAMESPACE

#define CHECK2(cvref_in, cvref_out) \
    static_assert(std::is_same_v< \
            decltype(q23::forward_like<int cvref_in >(std::declval<long&>())), \
            long cvref_out \
        >, "oops: cvref '" #cvref_in "' doesn't work") \
    /* end */
#define CHECK(cvref) CHECK2(cvref, cvref)
CHECK2(/**/, &&);
CHECK(&);
CHECK(&&);
CHECK2(const, const &&);
CHECK(const &);
CHECK(const &&);
// volatile is not supported
#undef CHECK
#undef CHECK2

QT_END_NAMESPACE