修改using的位置

This commit is contained in:
邹晓航
2014-12-23 09:44:30 +08:00
parent 197c4cc2fc
commit e6b17af0f7

View File

@@ -12,14 +12,14 @@
#include <iterator>
#include <string>
template<class T>
using stdVec = std::vector < T > ;
template<class T>
using tsVec = TinySTL::vector < T > ;
namespace TinySTL{
namespace VectorTest{
template<class T>
using stdVec = std::vector < T >;
template<class T>
using tsVec = TinySTL::vector < T >;
void testCase1();
void testCase2();
void testCase3();