decode_go14.go 338 B

1234567891011121314
  1. // Copyright (c) 2012-2015 Ugorji Nwoke. All rights reserved.
  2. // Use of this source code is governed by a MIT license found in the LICENSE file.
  3. // +build !go1.5
  4. package codec
  5. import "reflect"
  6. const reflectArrayOfSupported = false
  7. func reflectArrayOf(rvn reflect.Value) (rvn2 reflect.Value) {
  8. panic("reflect.ArrayOf unsupported")
  9. }