[ox/std] Make make_unique not noexcept

(synced from 8887daf7e4)
This commit is contained in:
2021-04-22 01:08:19 -05:00
parent df8b4e4796
commit 8033334dd3
+1 -1
View File
@@ -104,7 +104,7 @@ constexpr bool operator!=(std::nullptr_t, const UniquePtr<T> p2) noexcept {
template<typename T, typename ...Args>
[[nodiscard]]
constexpr auto make_unique(Args&&... args) noexcept {
constexpr auto make_unique(Args&&... args) {
return UniquePtr(new T(args...));
}