Skip to content

Commit 682233c

Browse files
authored
Use consistent order for qualifiers in conversion table (#3704)
The rows and columns now list qualifiers and qualifier combinations in the same order, and match the order used in the "Combining Qualifiers" section.
1 parent 1845397 commit 682233c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

spec/const3.dd

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -714,16 +714,16 @@ $(GLOSSARY qualifier-convertible). The same information is shown below in tabula
714714
format:)
715715

716716
$(TABLE_10 $(ARGS Implicit Conversion of Reference Types),
717-
$(VERTROW from/to, $(I mutable), $(D const), $(D shared), $(D const shared), $(D inout), $(D const inout), $(D inout shared), $(D const inout shared), $(D immutable)),
717+
$(VERTROW from/to, $(I mutable), $(D const), $(D shared), $(D inout), $(D const shared), $(D const inout), $(D inout shared), $(D const inout shared), $(D immutable)),
718718
$(TROW $(I mutable), $(YES), $(YES), $(NO), $(NO), $(NO), $(NO), $(NO), $(NO), $(NO) )
719719
$(TROW $(D const), $(NO), $(YES), $(NO), $(NO), $(NO), $(NO), $(NO), $(NO), $(NO) )
720+
$(TROW $(D shared), $(NO), $(NO), $(YES), $(NO), $(YES), $(NO), $(NO), $(NO), $(NO) )
721+
$(TROW $(D inout), $(NO), $(YES), $(NO), $(YES), $(NO), $(YES), $(NO), $(NO), $(NO) )
722+
$(TROW $(D const shared), $(NO), $(NO), $(NO), $(NO), $(YES), $(NO), $(NO), $(NO), $(NO) )
720723
$(TROW $(D const inout), $(NO), $(YES), $(NO), $(NO), $(NO), $(YES), $(NO), $(NO), $(NO) )
721-
$(TROW $(D const shared), $(NO), $(NO), $(NO), $(YES), $(NO), $(NO), $(NO), $(NO), $(NO) )
722-
$(TROW $(D const inout shared), $(NO), $(NO), $(NO), $(YES), $(NO), $(NO), $(NO), $(YES), $(NO) )
723-
$(TROW $(D immutable), $(NO), $(YES), $(NO), $(YES), $(NO), $(YES), $(NO), $(YES), $(YES))
724-
$(TROW $(D inout), $(NO), $(YES), $(NO), $(NO), $(YES), $(YES), $(NO), $(NO), $(NO) )
725-
$(TROW $(D shared), $(NO), $(NO), $(YES), $(YES), $(NO), $(NO), $(NO), $(NO), $(NO) )
726-
$(TROW $(D inout shared), $(NO), $(NO), $(NO), $(YES), $(NO), $(NO), $(YES), $(YES), $(NO) )
724+
$(TROW $(D inout shared), $(NO), $(NO), $(NO), $(NO), $(YES), $(NO), $(YES), $(YES), $(NO) )
725+
$(TROW $(D const inout shared), $(NO), $(NO), $(NO), $(NO), $(YES), $(NO), $(NO), $(YES), $(NO) )
726+
$(TROW $(D immutable), $(NO), $(YES), $(NO), $(NO), $(YES), $(YES), $(NO), $(YES), $(YES))
727727
)
728728

729729
$(H3 $(LNAME2 unique-expressions, Unique Expressions))

0 commit comments

Comments
 (0)