summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/opentelemetry-cpp/api/include/opentelemetry/std/string_view.h
blob: 8fd159d3adb70fdbd10f871d279f2c24210df728 (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 The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include "opentelemetry/version.h"

#include "opentelemetry/std/utility.h"

#include <cstddef>
#include <memory>
#include <string_view>
#include <utility>
#include <variant>

OPENTELEMETRY_BEGIN_NAMESPACE
// Standard Type aliases in nostd namespace
namespace nostd
{

// nostd::string_view
using string_view = std::string_view;

}  // namespace nostd
OPENTELEMETRY_END_NAMESPACE