forked from OSchip/llvm-project
[ORC-RT] Fix missing #include <string_view>s.
1dcff823db
updated the ORC runtime to use std::string_view, rather than its
own placeholder class (__orc_rt::string_view), but failed to add these
includes.
This commit is contained in:
parent
d446d91aa3
commit
608131b1f9
|
@ -19,6 +19,7 @@
|
|||
#include <map>
|
||||
#include <mutex>
|
||||
#include <sstream>
|
||||
#include <string_view>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <map>
|
||||
#include <mutex>
|
||||
#include <sstream>
|
||||
#include <string_view>
|
||||
#include <unordered_map>
|
||||
#include <unordered_set>
|
||||
#include <vector>
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
#include "stl_extras.h"
|
||||
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
#include <tuple>
|
||||
#include <type_traits>
|
||||
#include <unordered_map>
|
||||
|
|
Loading…
Reference in New Issue