Skip to content

Commit 7089fb2

Browse files
authored
[simd.overview] Remove obsolete "noexcept" (#8250)
The "noexcept" specifier was removed from the design by P3430R0, but the paper omitted the corresponding change of the synopsis.
1 parent 54d9b47 commit 7089fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/numerics.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17588,7 +17588,7 @@
1758817588
template<class U, class UAbi>
1758917589
constexpr explicit(@\seebelow@) basic_vec(const basic_vec<U, UAbi>&) noexcept;
1759017590
template<class G>
17591-
constexpr explicit basic_vec(G&& gen) noexcept;
17591+
constexpr explicit basic_vec(G&& gen);
1759217592
template<class R, class... Flags>
1759317593
constexpr basic_vec(R&& range, flags<Flags...> = {});
1759417594
template<class R, class... Flags>
@@ -20052,7 +20052,7 @@
2005220052
template<size_t UBytes, class UAbi>
2005320053
constexpr explicit basic_mask(const basic_mask<UBytes, UAbi>&) noexcept;
2005420054
template<class G>
20055-
constexpr explicit basic_mask(G&& gen) noexcept;
20055+
constexpr explicit basic_mask(G&& gen);
2005620056
constexpr basic_mask(const bitset<size()>& b) noexcept;
2005720057
constexpr explicit basic_mask(@\libconcept{unsigned_integral}@ auto val) noexcept;
2005820058

0 commit comments

Comments
 (0)