]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/api/include/opentelemetry/std/string_view.h
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / api / include / opentelemetry / std / string_view.h
1 // Copyright The OpenTelemetry Authors
2 // SPDX-License-Identifier: Apache-2.0
3
4 #pragma once
5
6 #include "opentelemetry/version.h"
7
8 #include "opentelemetry/std/utility.h"
9
10 #include <cstddef>
11 #include <memory>
12 #include <string_view>
13 #include <utility>
14 #include <variant>
15
16 OPENTELEMETRY_BEGIN_NAMESPACE
17 // Standard Type aliases in nostd namespace
18 namespace nostd
19 {
20
21 // nostd::string_view
22 using string_view = std::string_view;
23
24 } // namespace nostd
25 OPENTELEMETRY_END_NAMESPACE