Welcome to mirror list, hosted at ThFree Co, Russian Federation.

string_view.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afd79d13c661ad2e53719ffdfba28b37c32468a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#if __cplusplus > 201402L
#include <string_view>
#elif defined(__clang__) && __clang_major__ >= 7 && __cplusplus >= 201402L
#include <string_view>
#else
#include <experimental/string_view>
namespace std
{
using string_view = experimental::string_view;
}
#endif