File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
nui/include/nui/data_structures Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -552,31 +552,31 @@ namespace Nui
552
552
/* *
553
553
* @brief Returns an iterator to the underlying container.
554
554
*/
555
- ItemContainerType::iterator rawBegin ()
555
+ typename ItemContainerType::iterator rawBegin ()
556
556
{
557
557
return items_.begin ();
558
558
}
559
559
560
560
/* *
561
561
* @brief Returns an iterator to the underlying container.
562
562
*/
563
- ItemContainerType::iterator rawEnd ()
563
+ typename ItemContainerType::iterator rawEnd ()
564
564
{
565
565
return items_.end ();
566
566
}
567
567
568
568
/* *
569
569
* @brief Returns a const iterator to the underlying container.
570
570
*/
571
- ItemContainerType::const_iterator rawBegin () const
571
+ typename ItemContainerType::const_iterator rawBegin () const
572
572
{
573
573
return items_.begin ();
574
574
}
575
575
576
576
/* *
577
577
* @brief Returns a const iterator to the underlying container.
578
578
*/
579
- ItemContainerType::const_iterator rawEnd () const
579
+ typename ItemContainerType::const_iterator rawEnd () const
580
580
{
581
581
return items_.end ();
582
582
}
You can’t perform that action at this time.
0 commit comments