// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Copyright (C) Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
// This file incorporates work covered by the following copyright and permission
// notice:
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===//

#ifndef _ONEDPL_UTILITY
#define _ONEDPL_UTILITY

#include "oneapi/dpl/internal/common_config.h"
#include <utility>

namespace oneapi
{
namespace dpl
{
using ::std::declval;
using ::std::exchange;
using ::std::forward;
using ::std::get;
using ::std::in_place;
using ::std::in_place_t;
using ::std::make_pair;
using ::std::move;
using ::std::move_if_noexcept;
using ::std::pair;
using ::std::piecewise_construct;
using ::std::swap;
using ::std::tuple_element;
using ::std::tuple_size;
} // namespace dpl
} // namespace oneapi

namespace dpl = oneapi::dpl;

#endif // _ONEDPL_UTILITY
