File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
include/swift/Serialization Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const uint16_t VERSION_MAJOR = 0;
55
55
// / describe what change you made. The content of this comment isn't important;
56
56
// / it just ensures a conflict if two people change the module format.
57
57
// / Don't worry about adhering to the 80-column limit for this line.
58
- const uint16_t VERSION_MINOR = 454 ; // Last change: multiple nominal types for operators
58
+ const uint16_t VERSION_MINOR = 455 ; // Last change: reorder block IDs
59
59
60
60
using DeclIDField = BCFixed<31 >;
61
61
@@ -529,6 +529,11 @@ enum BlockID {
529
529
// / \sa options_block
530
530
OPTIONS_BLOCK_ID,
531
531
532
+ // / The declaration member-tables index block, a sub-block of the index block.
533
+ // /
534
+ // / \sa decl_member_tables_block
535
+ DECL_MEMBER_TABLES_BLOCK_ID,
536
+
532
537
// / The module documentation container block, which contains all other
533
538
// / documentation blocks.
534
539
MODULE_DOC_BLOCK_ID = 96 ,
@@ -537,11 +542,6 @@ enum BlockID {
537
542
// /
538
543
// / \sa comment_block
539
544
COMMENT_BLOCK_ID,
540
-
541
- // / The declaration member-tables index block, a sub-blocb of the index block.
542
- // /
543
- // / \sa decl_member_tables_block
544
- DECL_MEMBER_TABLES_BLOCK_ID
545
545
};
546
546
547
547
// / The record types within the control block.
You can’t perform that action at this time.
0 commit comments