File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1196,8 +1196,6 @@ struct MapInnerAliasBoundedStringHelperInnerBitsetHelper
1196
1196
map<Inner_alias_bounded_string_helper, InnerBitsetHelper> var_map_inneraliasboundedstringhelper_innerbitsethelper;
1197
1197
};
1198
1198
1199
-
1200
-
1201
1199
struct MapInnerAliasBoundedWStringHelperShort
1202
1200
{
1203
1201
map<Inner_alias_bounded_wstring_helper, short> var_map_inneraliasboundedwstringhelper_short;
@@ -1332,9 +1330,13 @@ struct MapInnerAliasBoundedWStringHelperInnerBitsetHelper
1332
1330
struct BoundedSmallMap
1333
1331
{
1334
1332
map<long,long,1> var_small_map;
1333
+ map<string, long, 5> var_unbounded_string_long_bounded_small_map;
1334
+ map<long, string, 5> var_long_unbounded_string_bounded_small_map;
1335
1335
};
1336
1336
1337
1337
struct BoundedLargeMap
1338
1338
{
1339
1339
map<long,long,41925> var_large_map;
1340
+ map<string, long, 255> var_unbounded_string_long_bounded_large_map;
1341
+ map<long, string, 255> var_long_unbounded_string_bounded_large_map;
1340
1342
};
Original file line number Diff line number Diff line change @@ -130,15 +130,15 @@ struct SequenceBitset
130
130
sequence<InnerBitsetHelper> var_sequence_bitset;
131
131
};
132
132
133
-
134
-
135
133
struct BoundedSmallSequences
136
134
{
137
135
sequence<short, 1> var_sequence_small;
136
+ sequence<string, 5> var_unbounded_string_small_bounded_sequence;
138
137
};
139
138
140
139
struct BoundedBigSequences
141
140
{
142
141
sequence<short, 41925> var_sequence_big;
142
+ sequence<string, 256> var_unbounded_string_large_bounded_sequence;
143
143
};
144
144
You can’t perform that action at this time.
0 commit comments