From b72685ff057b1edf899d4516dcd1ff4bb3274a33 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sat, 30 Oct 2021 12:59:36 +0200 Subject: [PATCH] Removes noexcept from UniquePtrList constructor. --- src/Memory/__UniquePtrList.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Memory/__UniquePtrList.hpp b/src/Memory/__UniquePtrList.hpp index 5174ac7..8f51789 100644 --- a/src/Memory/__UniquePtrList.hpp +++ b/src/Memory/__UniquePtrList.hpp @@ -20,7 +20,7 @@ namespace ArbUt { inline UniquePtrList() noexcept : _vector() {} /// @brief Initialises a UniquePtrList from a std::vector of raw pointers. /// @param vec A std::vector of raw pointers. - inline UniquePtrList(const std::vector& vec) noexcept : _vector(vec) { EnsureAllNotNull(vec); } + inline UniquePtrList(const std::vector& vec) : _vector(vec) { EnsureAllNotNull(vec); } /// @brief Initialises a UniquePtrList with a certain capacity reserved for use. This does not set immediate /// size. /// @param capacity The desired capacity.