Skip to content

Commit 031799c

Browse files
committed
add noexcept attribute
1 parent a202655 commit 031799c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/xtd.core/include/xtd/collections/bit_array.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ namespace xtd {
403403

404404
/// @cond
405405
template<xtd::usize size_>
406-
inline auto xtd::linq::enumerable::as_enumerable(std::bitset<size_> source) -> xtd::collections::generic::enumerable_generator<bool> {
406+
inline auto xtd::linq::enumerable::as_enumerable(std::bitset<size_> source) noexcept -> xtd::collections::generic::enumerable_generator<bool> {
407407
for (const auto& item : xtd::collections::bit_array {source})
408408
co_yield item;
409409
}

0 commit comments

Comments
 (0)