Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Sep 22, 2024
1 parent e954388 commit b6f8409
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ namespace xtd {
/// @brief Represents the const pointer of list value type.
using const_pointer = const value_type*;
/// @brief Represents the iterator of list value type.
using iterator = generic::icollection<type_t>::iterator;
using iterator = typename generic::icollection<type_t>::iterator;
/// @brief Represents the const iterator of list value type.
using const_iterator = generic::icollection<type_t>::const_iterator;
using const_iterator = typename generic::icollection<type_t>::const_iterator;
/// @}

/// @name Public Fields
Expand Down

0 comments on commit b6f8409

Please sign in to comment.