Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
q23utility.cpp
Go to the documentation of this file.
1// Copyright (C) 2023 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// Qt-Security score:significant reason:default
4
5#include <QtCore/q23utility.h>
6
7QT_BEGIN_NAMESPACE
8
9#define CHECK2(cvref_in, cvref_out)
10 static_assert(std::is_same_v<
11 decltype(q23::forward_like<int cvref_in >(std::declval<long&>())),
12 long cvref_out
13 >, "oops: cvref '" #cvref_in "' doesn't work")
14 /* end */
15#define CHECK(cvref) CHECK2(cvref, cvref)
16CHECK2(/**/, &&);
18CHECK(&&);
19CHECK2(const, const &&);
20CHECK(const &);
21CHECK(const &&);
22// volatile is not supported
23#undef CHECK
24#undef CHECK2
25
26QT_END_NAMESPACE
#define CHECK(cvref)
#define CHECK2(cvref_in, cvref_out)
Definition q23utility.cpp:9