Skip to content

Commit e388389

Browse files
merge from main
1 parent 7f4589b commit e388389

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/beman/optional26/optional.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ concept enable_assign_from_other =
288288
template <class T>
289289
class optional {
290290
static_assert((!std::is_same_v<T, std::remove_cv_t<in_place_t>>) &&
291-
(!std::is_same_v<std::remove_cv_t<T>, nullopt_t>),
292-
"T must not be in_place_t or nullopt_t");
291+
(!std::is_same_v<std::remove_cv_t<T>, nullopt_t>),
292+
"T must not be in_place_t or nullopt_t");
293293

294294
struct empty {};
295295
union {

0 commit comments

Comments
 (0)