Skip to content

Commit

Permalink
update code
Browse files Browse the repository at this point in the history
  • Loading branch information
muidea committed Sep 26, 2023
1 parent ce862c1 commit 23a5e53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion provider/remote/value.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ func (s *ValueImpl) IsBasic() bool {
[]int8, []int16, []int32, []int, []int64,
[]uint8, []uint16, []uint32, []uint, []uint64,
[]float32, []float64,
[]string:
[]string,
[]any:
return true
case *ObjectValue, *SliceObjectValue:
return false
Expand Down Expand Up @@ -165,6 +166,7 @@ func (s *ValueImpl) Copy() (ret *ValueImpl) {
[]uint8, []uint16, []uint32, []uint, []uint64,
[]float32, []float64,
[]string,
[]any,
*ObjectValue,
*SliceObjectValue:
ret.value = s.value
Expand Down

0 comments on commit 23a5e53

Please sign in to comment.