From 8b27ad2d9e90980b63bc262168fb93849e380ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Tue, 6 Jan 2015 13:20:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99=E7=9A=84?= =?UTF-8?q?=E5=A4=B4=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL/Test/TestUtil.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/TinySTL/Test/TestUtil.h b/TinySTL/Test/TestUtil.h index da01bd7..b613ab3 100644 --- a/TinySTL/Test/TestUtil.h +++ b/TinySTL/Test/TestUtil.h @@ -5,8 +5,6 @@ #include #include -#include "..\Algorithm.h" - namespace TinySTL{ namespace Test{ @@ -21,8 +19,6 @@ namespace TinySTL{ template bool container_equal(Container1& con1, Container2& con2){//不是每一个容器都有const_iterator - /*return TinySTL::equal(std::begin(con1), std::end(con1), - std::begin(con2));*/ auto first1 = std::begin(con1), last1 = std::end(con1); auto first2 = std::begin(con2), last2 = std::end(con2); for (; first1 != last1 && first2 != last2; ++first1, ++first2){