mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Fixed std::string_view include warning for < C++17
This commit is contained in:
parent
130859c3b7
commit
8659091ff3
@ -43,7 +43,6 @@ SOFTWARE.
|
||||
|
||||
#include "type_traits.h"
|
||||
#include "integral_limits.h"
|
||||
#include "string_view.h"
|
||||
#include "hash.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -34,10 +34,13 @@ SOFTWARE.
|
||||
#include "etl/vector.h"
|
||||
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
#include <vector>
|
||||
#include <list>
|
||||
|
||||
#if ETL_USING_CPP17
|
||||
#include <string_view>
|
||||
#endif
|
||||
|
||||
#undef STR
|
||||
#define STR(x) x
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user