mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-06 14:52:54 +02:00
16 lines
316 B
C++
16 lines
316 B
C++
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include <type_traits>
|
|
|
|
#include "opentelemetry/version.h"
|
|
|
|
OPENTELEMETRY_BEGIN_NAMESPACE
|
|
namespace nostd
|
|
{
|
|
template <class T>
|
|
using decay_t = typename std::decay<T>::type;
|
|
} // namespace nostd
|
|
OPENTELEMETRY_END_NAMESPACE
|