mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-04 16:41:43 +00:00
Revert r351954 "Add a value_type to ArrayRef."
This breaks arm self-hosted buildbots. llvm-svn: 352206
This commit is contained in:
parent
aa3ed5a983
commit
b120127001
@ -44,7 +44,6 @@ namespace llvm {
|
||||
using const_iterator = const T *;
|
||||
using size_type = size_t;
|
||||
using reverse_iterator = std::reverse_iterator<iterator>;
|
||||
using value_type = typename std::remove_cv<T>::type;
|
||||
|
||||
private:
|
||||
/// The start of the array, in an external buffer.
|
||||
|
@ -51,14 +51,6 @@ static_assert(
|
||||
"Assigning from an initializer list");
|
||||
#endif
|
||||
|
||||
// Check Typedefs.
|
||||
static_assert(
|
||||
std::is_same<ArrayRef<int>::value_type, int>::value,
|
||||
"erroneous value_type");
|
||||
static_assert(
|
||||
std::is_same<ArrayRef<const int>::value_type, int>::value,
|
||||
"erroneous value_type");
|
||||
|
||||
namespace {
|
||||
|
||||
TEST(ArrayRefTest, AllocatorCopy) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user