summaryrefslogtreecommitdiff
path: root/asl/option.hpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-05 18:53:16 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-05 18:53:16 +0100
commite65fe1b93684f9517599be695eb40aa4537fc6c7 (patch)
tree7b3c429e20574c9c0a66d1302a978d1b39379397 /asl/option.hpp
parent11894bef04095c37196af5ae1bfed885775d49eb (diff)
Add status_or
Diffstat (limited to 'asl/option.hpp')
-rw-r--r--asl/option.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/asl/option.hpp b/asl/option.hpp
index 8c0a573..eb6a91c 100644
--- a/asl/option.hpp
+++ b/asl/option.hpp
@@ -35,7 +35,6 @@ concept not_assignable_from_option =
!assignable_from<T&, option<U>&&> &&
!assignable_from<T&, const option<U>&&>;
-
template<typename T, typename U>
concept not_constructible_assignable_from_option =
not_constructible_from_option<T, U> &&