================ @@ -20,6 +20,47 @@ struct shared_ptr { explicit operator bool() const noexcept; }; +template <typename T> +struct vector { + vector(); + bool operator==(const vector<T>& other) const; + bool operator!=(const vector<T>& other) const; + unsigned long size() const; + bool empty() const; + + // Basic iterator implementation for testing + struct iterator { ---------------- akshaykumars614 wrote:
modified https://github.com/llvm/llvm-project/pull/100177 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits