15f757f3fSDimitry Andric// -*- C++ -*- 25f757f3fSDimitry Andric//===----------------------------------------------------------------------===// 35f757f3fSDimitry Andric// 45f757f3fSDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 55f757f3fSDimitry Andric// See https://llvm.org/LICENSE.txt for license information. 65f757f3fSDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 75f757f3fSDimitry Andric// 85f757f3fSDimitry Andric//===----------------------------------------------------------------------===// 95f757f3fSDimitry Andric 105f757f3fSDimitry Andricexport namespace std { 11*0fca6ea1SDimitry Andric using std::max_align_t _LIBCPP_USING_IF_EXISTS; 125f757f3fSDimitry Andric using std::nullptr_t; 13*0fca6ea1SDimitry Andric using std::ptrdiff_t _LIBCPP_USING_IF_EXISTS; 14*0fca6ea1SDimitry Andric using std::size_t _LIBCPP_USING_IF_EXISTS; 155f757f3fSDimitry Andric 165f757f3fSDimitry Andric using std::byte; 175f757f3fSDimitry Andric 185f757f3fSDimitry Andric // [support.types.byteops], byte type operations 195f757f3fSDimitry Andric using std::operator<<=; 205f757f3fSDimitry Andric using std::operator<<; 215f757f3fSDimitry Andric using std::operator>>=; 225f757f3fSDimitry Andric using std::operator>>; 235f757f3fSDimitry Andric using std::operator|=; 245f757f3fSDimitry Andric using std::operator|; 255f757f3fSDimitry Andric using std::operator&=; 265f757f3fSDimitry Andric using std::operator&; 275f757f3fSDimitry Andric using std::operator^=; 285f757f3fSDimitry Andric using std::operator^; 295f757f3fSDimitry Andric using std::operator~; 305f757f3fSDimitry Andric using std::to_integer; 315f757f3fSDimitry Andric} // namespace std 32