From 8ff634d557d20cfd0e26e04fdc3bf432c493c5ad Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Tue, 30 Jan 2018 20:06:32 -0800 Subject: [PATCH] Add third_party/string_view.h{,pp} --- third_party/string_view.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 third_party/string_view.h diff --git a/third_party/string_view.h b/third_party/string_view.h new file mode 100644 index 00000000..e0067ba9 --- /dev/null +++ b/third_party/string_view.h @@ -0,0 +1,6 @@ +#if __cplusplus < 201703L +#define STX_NAMESPACE_NAME std +#include "string_view.hpp" +#else +#include +#endif