修改using的位置
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user