2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2020-05-25 18:17:00 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#if __cplusplus >= 202002L
|
|
|
|
|
#include <span>
|
|
|
|
|
|
|
|
|
|
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
|