// Copyright (C) 2020 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #if __cplusplus >= 202002L #include namespace Utils { using std::as_bytes; using std::as_writable_bytes; using std::get; using std::span; } // namespace Utils #else #define TCB_SPAN_NAMESPACE_NAME Utils #include <3rdparty/span/span.hpp> #endif