删除多余的头文件
This commit is contained in:
@@ -5,8 +5,6 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
#include "..\Algorithm.h"
|
||||
|
||||
namespace TinySTL{
|
||||
namespace Test{
|
||||
|
||||
@@ -21,8 +19,6 @@ namespace TinySTL{
|
||||
|
||||
template<class Container1, class Container2>
|
||||
bool container_equal(Container1& con1, Container2& con2){//<2F><><EFBFBD><EFBFBD>ÿһ<C3BF><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>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){
|
||||
|
||||
Reference in New Issue
Block a user