2015-01-07 16:08:01 -05:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
//===------------------------ string_view ---------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
2019-01-19 05:05:35 -05:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2015-01-07 16:08:01 -05:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2019-01-19 05:05:35 -05:00
|
|
|
#ifndef _LIBCPP_EXPERIMENTAL_STRING_VIEW
|
|
|
|
|
#define _LIBCPP_EXPERIMENTAL_STRING_VIEW
|
2015-01-07 16:08:01 -05:00
|
|
|
|
2019-01-19 05:05:35 -05:00
|
|
|
#include <__config>
|
|
|
|
|
|
|
|
|
|
#ifdef _LIBCPP_WARNING
|
|
|
|
|
_LIBCPP_WARNING("<experimental/string_view> has been removed. Use <string_view> instead.")
|
|
|
|
|
#else
|
|
|
|
|
# warning "<experimental/string_view> has been removed. Use <string_view> instead."
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // _LIBCPP_EXPERIMENTAL_STRING_VIEW
|