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 @@ -615,7 +615,7 @@ class out {
615
615
*t = T (CPP2_FORWARD (args)...);
616
616
}
617
617
else {
618
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
618
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
619
619
}
620
620
}
621
621
else {
@@ -625,7 +625,7 @@ class out {
625
625
dt->value () = T (CPP2_FORWARD (args)...);
626
626
}
627
627
else {
628
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
628
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
629
629
}
630
630
}
631
631
else {
@@ -642,7 +642,7 @@ class out {
642
642
*t = T{CPP2_FORWARD (args)...};
643
643
}
644
644
else {
645
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
645
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
646
646
}
647
647
}
648
648
else {
@@ -652,7 +652,7 @@ class out {
652
652
dt->value () = T{CPP2_FORWARD (args)...};
653
653
}
654
654
else {
655
- Default.expects (! " attempted to copy assign, but copy assignment is not available" );
655
+ Default.expects (false , " attempted to copy assign, but copy assignment is not available" );
656
656
}
657
657
}
658
658
else {
You can’t perform that action at this time.
0 commit comments