From d28d005d2a8fcb81461516a37e30526063aba448 Mon Sep 17 00:00:00 2001 From: Grillo <11585030+grillo-delmal@users.noreply.github.com> Date: Feb 06 2023 23:48:32 +0000 Subject: Clarify size_t origin for tgc::hash::BucketNode --- diff --git a/toonz/sources/include/tcg/hash.h b/toonz/sources/include/tcg/hash.h index c668090..78770e9 100644 --- a/toonz/sources/include/tcg/hash.h +++ b/toonz/sources/include/tcg/hash.h @@ -21,6 +21,11 @@ public: typedef T value_type; typedef Hash_functor hash_type; + struct BucketNode; + typedef typename tcg::list::size_t size_t; + typedef typename tcg::list::iterator iterator; + typedef typename tcg::list::const_iterator const_iterator; + struct BucketNode { K m_key; T m_val; @@ -34,11 +39,6 @@ public: ~BucketNode() {} }; - typedef typename tcg::list::size_t size_t; - - typedef typename tcg::list::iterator iterator; - typedef typename tcg::list::const_iterator const_iterator; - private: std::vector m_bucketsIdx; tcg::list m_items;