File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
crates/stackable-versioned-macros/src/codegen/item Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ impl VersionedField {
203
203
) ;
204
204
205
205
Some ( quote ! {
206
- #to_ident: #from_struct_ident. #from_ident. tracking_into( status, #json_path_ident) ,
206
+ #to_ident: #from_struct_ident. #from_ident. tracking_into( status, & #json_path_ident) ,
207
207
} )
208
208
} else {
209
209
Some ( quote ! {
@@ -224,7 +224,7 @@ impl VersionedField {
224
224
) ;
225
225
226
226
Some ( quote ! {
227
- #from_ident: #from_struct_ident. #to_ident. tracking_into( status, #json_path_ident) ,
227
+ #from_ident: #from_struct_ident. #to_ident. tracking_into( status, & #json_path_ident) ,
228
228
} )
229
229
} else {
230
230
Some ( quote ! {
@@ -250,7 +250,7 @@ impl VersionedField {
250
250
) ;
251
251
252
252
Some ( quote ! {
253
- #next_field_ident: #from_struct_ident. #old_field_ident. tracking_into( status, #json_path_ident) ,
253
+ #next_field_ident: #from_struct_ident. #old_field_ident. tracking_into( status, & #json_path_ident) ,
254
254
} )
255
255
} else {
256
256
Some ( quote ! {
You can’t perform that action at this time.
0 commit comments