We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a202655 commit 031799cCopy full SHA for 031799c
1 file changed
src/xtd.core/include/xtd/collections/bit_array.hpp
@@ -403,7 +403,7 @@ namespace xtd {
403
404
/// @cond
405
template<xtd::usize size_>
406
-inline auto xtd::linq::enumerable::as_enumerable(std::bitset<size_> source) -> xtd::collections::generic::enumerable_generator<bool> {
+inline auto xtd::linq::enumerable::as_enumerable(std::bitset<size_> source) noexcept -> xtd::collections::generic::enumerable_generator<bool> {
407
for (const auto& item : xtd::collections::bit_array {source})
408
co_yield item;
409
}
0 commit comments