From e6b17af0f76c8a3f5bb84db6181bd3e0684c4536 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, 23 Dec 2014 09:44:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9using=E7=9A=84=E4=BD=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL/Test/VectorTest.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/TinySTL/Test/VectorTest.h b/TinySTL/Test/VectorTest.h index a0e5340..ad52a6a 100644 --- a/TinySTL/Test/VectorTest.h +++ b/TinySTL/Test/VectorTest.h @@ -12,14 +12,14 @@ #include #include -template -using stdVec = std::vector < T > ; - -template -using tsVec = TinySTL::vector < T > ; - namespace TinySTL{ namespace VectorTest{ + template + using stdVec = std::vector < T >; + + template + using tsVec = TinySTL::vector < T >; + void testCase1(); void testCase2(); void testCase3();