add missing semicolon

This commit is contained in:
Sébastien Loriot 2018-05-16 08:51:03 +02:00
parent fe262d6215
commit 4ceeb92020
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public:
{ // replace with iterator_adaptor implementation -JGS
typedef std::forward_iterator_tag Category;
typedef ArrayBinaryTreeNode value_type;
typedef size_type difference_type
typedef size_type difference_type;
typedef ArrayBinaryTreeNode* Pointer;
typedef ArrayBinaryTreeNode& Reference;