// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 #pragma once #include "opentelemetry/version.h" #include OPENTELEMETRY_BEGIN_NAMESPACE // Standard Type aliases in nostd namespace namespace nostd { // nostd::unique_ptr template using unique_ptr = std::unique_ptr<_Types...>; } // namespace nostd OPENTELEMETRY_END_NAMESPACE