// -*- C++ -*-
//===-- optional ----------------------------------------------------------===//
//
// 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_optional
#define __ONEDPL_optional
#include "oneapi/dpl/internal/common_config.h"
#include <optional>

namespace oneapi
{
namespace dpl
{
#if __cplusplus > 201402L
using ::std::make_optional;
using ::std::nullopt;
using ::std::nullopt_t;
using ::std::optional;
#endif
} // namespace dpl
} // namespace oneapi
#endif
