Source file src/cmd/fix/netipv6zone.go
1 // Copyright 2012 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package main 6 7 func init() { 8 register(netipv6zoneFix) 9 } 10 11 var netipv6zoneFix = fix{ 12 name: "netipv6zone", 13 date: "2012-11-26", 14 f: noop, 15 desc: `Adapt element key to IPAddr, UDPAddr or TCPAddr composite literals (removed). 16 17 https://codereview.appspot.com/6849045/ 18 `, 19 } 20