From ef9a3022d33ca8d87c098c31f9e4e6cac4cc83e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Wed, 29 Oct 2014 09:25:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0size=5Ftype?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL/BinarySearchTree.h | 1 + 1 file changed, 1 insertion(+) diff --git a/TinySTL/BinarySearchTree.h b/TinySTL/BinarySearchTree.h index 28b37eb..85e5641 100644 --- a/TinySTL/BinarySearchTree.h +++ b/TinySTL/BinarySearchTree.h @@ -31,6 +31,7 @@ namespace TinySTL{ typedef T value_type; typedef bst_iter const_iterator; typedef const T& const_reference; + typedef size_t size_type; private: node *root_; size_t size_;