File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ class out {
616
616
*t = T (CPP2_FORWARD (args)...);
617
617
}
618
618
else {
619
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
619
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
620
620
}
621
621
}
622
622
else {
@@ -626,7 +626,7 @@ class out {
626
626
dt->value () = T (CPP2_FORWARD (args)...);
627
627
}
628
628
else {
629
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
629
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
630
630
}
631
631
}
632
632
else {
@@ -643,7 +643,7 @@ class out {
643
643
*t = T{CPP2_FORWARD (args)...};
644
644
}
645
645
else {
646
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
646
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
647
647
}
648
648
}
649
649
else {
@@ -653,7 +653,7 @@ class out {
653
653
dt->value () = T{CPP2_FORWARD (args)...};
654
654
}
655
655
else {
656
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
656
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
657
657
}
658
658
}
659
659
else {
You can’t perform that action at this time.
0 commit comments