Skip to content

Commit 81b96ac

Browse files
committed
Added missing typename.
1 parent b71e9b3 commit 81b96ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nui/include/nui/data_structures/selectables_registry.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -552,31 +552,31 @@ namespace Nui
552552
/**
553553
* @brief Returns an iterator to the underlying container.
554554
*/
555-
ItemContainerType::iterator rawBegin()
555+
typename ItemContainerType::iterator rawBegin()
556556
{
557557
return items_.begin();
558558
}
559559

560560
/**
561561
* @brief Returns an iterator to the underlying container.
562562
*/
563-
ItemContainerType::iterator rawEnd()
563+
typename ItemContainerType::iterator rawEnd()
564564
{
565565
return items_.end();
566566
}
567567

568568
/**
569569
* @brief Returns a const iterator to the underlying container.
570570
*/
571-
ItemContainerType::const_iterator rawBegin() const
571+
typename ItemContainerType::const_iterator rawBegin() const
572572
{
573573
return items_.begin();
574574
}
575575

576576
/**
577577
* @brief Returns a const iterator to the underlying container.
578578
*/
579-
ItemContainerType::const_iterator rawEnd() const
579+
typename ItemContainerType::const_iterator rawEnd() const
580580
{
581581
return items_.end();
582582
}

0 commit comments

Comments
 (0)