Commit ef890c3
Breaking change: Make the arena-enabled constructors of
If you would like to construct one of these fields with arena storage, you must construct them on an arena.
For example:
```cc
RepeatedPtrField<MyMessage> rpf(arena);
```
should be changed to:
```cc
auto* rpf = Arena::Create<RepeatedPtrField<MyMessage>>(arena);
```
PiperOrigin-RevId: 820040847RepeatedField, RepeatedPtrField, and Map private.1 parent 3cc5e07 commit ef890c3
File tree
5 files changed
+0
-43
lines changed- src/google/protobuf
5 files changed
+0
-43
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1181 | 1181 | | |
1182 | 1182 | | |
1183 | 1183 | | |
1184 | | - | |
1185 | | - | |
1186 | | - | |
1187 | 1184 | | |
1188 | 1185 | | |
1189 | | - | |
1190 | 1186 | | |
1191 | 1187 | | |
1192 | 1188 | | |
1193 | 1189 | | |
1194 | | - | |
1195 | | - | |
1196 | | - | |
1197 | | - | |
1198 | | - | |
1199 | | - | |
1200 | 1190 | | |
1201 | 1191 | | |
1202 | 1192 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
161 | 161 | | |
162 | 162 | | |
163 | 163 | | |
164 | | - | |
165 | | - | |
166 | | - | |
167 | | - | |
168 | | - | |
169 | | - | |
170 | | - | |
171 | | - | |
172 | | - | |
173 | | - | |
174 | | - | |
175 | | - | |
176 | 164 | | |
177 | 165 | | |
178 | 166 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
81 | | - | |
82 | 80 | | |
83 | 81 | | |
84 | 82 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
403 | 403 | | |
404 | 404 | | |
405 | 405 | | |
406 | | - | |
407 | | - | |
408 | | - | |
409 | | - | |
410 | | - | |
411 | | - | |
412 | | - | |
413 | 406 | | |
414 | 407 | | |
415 | 408 | | |
| |||
630 | 623 | | |
631 | 624 | | |
632 | 625 | | |
633 | | - | |
634 | 626 | | |
635 | 627 | | |
636 | | - | |
637 | 628 | | |
638 | 629 | | |
639 | 630 | | |
| |||
647 | 638 | | |
648 | 639 | | |
649 | 640 | | |
650 | | - | |
651 | 641 | | |
652 | | - | |
653 | 642 | | |
654 | 643 | | |
655 | 644 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1149 | 1149 | | |
1150 | 1150 | | |
1151 | 1151 | | |
1152 | | - | |
1153 | | - | |
1154 | | - | |
1155 | | - | |
1156 | | - | |
1157 | | - | |
1158 | 1152 | | |
1159 | 1153 | | |
1160 | 1154 | | |
| |||
1504 | 1498 | | |
1505 | 1499 | | |
1506 | 1500 | | |
1507 | | - | |
1508 | 1501 | | |
1509 | | - | |
1510 | 1502 | | |
1511 | 1503 | | |
1512 | 1504 | | |
| |||
0 commit comments