1d72607e9SDimitry Andric// -*- C++ -*-
2d72607e9SDimitry Andric//===------------------------ string_view ---------------------------------===//
3d72607e9SDimitry Andric//
4d72607e9SDimitry Andric//                     The LLVM Compiler Infrastructure
5d72607e9SDimitry Andric//
6*b5893f02SDimitry Andric// This file is dual licensed under the MIT and the University of Illinois Open
7*b5893f02SDimitry Andric// Source Licenses. See LICENSE.TXT for details.
8d72607e9SDimitry Andric//
9d72607e9SDimitry Andric//===----------------------------------------------------------------------===//
10*b5893f02SDimitry Andric#ifndef _LIBCPP_EXPERIMENTAL_STRING_VIEW
11*b5893f02SDimitry Andric#define _LIBCPP_EXPERIMENTAL_STRING_VIEW
12d72607e9SDimitry Andric
13*b5893f02SDimitry Andric#include <__config>
14*b5893f02SDimitry Andric
15*b5893f02SDimitry Andric#ifdef _LIBCPP_WARNING
16*b5893f02SDimitry Andric_LIBCPP_WARNING("<experimental/string_view> has been removed. Use <string_view> instead.")
17*b5893f02SDimitry Andric#else
18*b5893f02SDimitry Andric# warning "<experimental/string_view> has been removed. Use <string_view> instead."
19*b5893f02SDimitry Andric#endif
20*b5893f02SDimitry Andric
21*b5893f02SDimitry Andric#endif // _LIBCPP_EXPERIMENTAL_STRING_VIEW
22