From: Ian Lance Taylor Date: Wed, 26 Aug 2009 21:40:34 +0000 (-0700) Subject: Restore comment line accidentally dropped in CL 33097. X-Git-Tag: weekly.2009-11-06~765 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8ce468ea2f967b4ae68ed49c329a29016e3f4b6d;p=gostls13.git Restore comment line accidentally dropped in CL 33097. R=rsc DELTA=1 (1 added, 0 deleted, 0 changed) OCL=33891 CL=33891 --- diff --git a/src/pkg/reflect/value.go b/src/pkg/reflect/value.go index 014ea933c6..4ba1c2eec1 100644 --- a/src/pkg/reflect/value.go +++ b/src/pkg/reflect/value.go @@ -409,6 +409,7 @@ type UnsafePointerValue struct { // Get returns the underlying uintptr value. // Get returns uintptr, not unsafe.Pointer, so that // programs that do not import "unsafe" cannot +// obtain a value of unsafe.Pointer type from "reflect". func (v *UnsafePointerValue) Get() uintptr { return uintptr(*(*unsafe.Pointer)(v.addr)); }