From e6283ab8e6f9698448cc27ae88a10e3507077d2f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 27 Sep 2012 16:52:12 +0000 Subject: [PATCH] Remove more old stuff. git-svn-id: https://svn.dealii.org/trunk@26788 0785d39b-7218-0410-832d-ea1e28bc413d --- .../patches/gcc-4.0.0-stl_vector.h.patch | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 deal.II/contrib/patches/gcc-4.0.0-stl_vector.h.patch diff --git a/deal.II/contrib/patches/gcc-4.0.0-stl_vector.h.patch b/deal.II/contrib/patches/gcc-4.0.0-stl_vector.h.patch deleted file mode 100644 index 8f6b3216e8..0000000000 --- a/deal.II/contrib/patches/gcc-4.0.0-stl_vector.h.patch +++ /dev/null @@ -1,46 +0,0 @@ -*** stl_vector.h 2005-10-17 18:15:32.000000000 +0200 ---- stl_vector.orig.h 2005-10-10 21:30:22.000000000 +0200 -*************** -*** 492,503 **** - */ - reference - operator[](size_type __n) -! { -! #ifdef STL_DEBUG -! if (__n >= this->size()) abort(); -! #endif -! return *(begin() + __n); -! } - - /** - * @brief Subscript access to the data contained in the %vector. ---- 492,498 ---- - */ - reference - operator[](size_type __n) -! { return *(begin() + __n); } - - /** - * @brief Subscript access to the data contained in the %vector. -*************** -*** 512,523 **** - */ - const_reference - operator[](size_type __n) const -! { -! #ifdef STL_DEBUG -! if (__n >= this->size()) abort(); -! #endif -! return *(begin() + __n); -! } - - protected: - /// @if maint Safety check used only from at(). @endif ---- 507,513 ---- - */ - const_reference - operator[](size_type __n) const -! { return *(begin() + __n); } - - protected: - /// @if maint Safety check used only from at(). @endif -- 2.39.5