You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
364 B
18 lines
364 B
namespace std {
|
|
template <typename _Tp, typename _Alloc = int>
|
|
struct vector {
|
|
static void func() { vector *i, *j; i - j; }
|
|
};
|
|
|
|
struct bit_iterator { ~bit_iterator() {} };
|
|
|
|
inline void operator-(int __x, const bit_iterator &__y) {
|
|
}
|
|
|
|
template <typename _Alloc>
|
|
struct vector<bool, _Alloc> : bit_iterator {
|
|
typedef bit_iterator iterator;
|
|
};
|
|
|
|
} // namespace std
|