Skip to content

Commit aba3968

Browse files
committed
Add noexcept attribute
1 parent e390457 commit aba3968

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/xtd.core/include/xtd/linq/enumerable_.hpp

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

229229
/// @cond
230230
template<xtd::usize size_>
231-
[[nodiscard]] static auto as_enumerable(std::bitset<size_> source) -> xtd::collections::generic::enumerable_generator<bool>; // defined in xtd/collections/bit_array.hpp
231+
[[nodiscard]] static auto as_enumerable(std::bitset<size_> source) noexcept -> xtd::collections::generic::enumerable_generator<bool>; // defined in xtd/collections/bit_array.hpp
232232
template<typename value_t, typename container_t>
233233
[[nodiscard]] static auto as_enumerable(std::queue<value_t, container_t> source) noexcept -> xtd::collections::generic::enumerable_generator<value_t>;
234234
template<typename value_t, typename container_t>

0 commit comments

Comments
 (0)