(value *int64)
| 311 | } |
| 312 | |
| 313 | func cloneInt64Ptr(value *int64) *int64 { |
| 314 | if value == nil { |
| 315 | return nil |
| 316 | } |
| 317 | cloned := *value |
| 318 | return &cloned |
| 319 | } |
| 320 | |
| 321 | func cloneStringPtr(value *string) *string { |
| 322 | if value == nil { |
no outgoing calls
no test coverage detected