]> Cypherpunks repositories - gostls13.git/commitdiff
Restore comment line accidentally dropped in CL 33097.
authorIan Lance Taylor <iant@golang.org>
Wed, 26 Aug 2009 21:40:34 +0000 (14:40 -0700)
committerIan Lance Taylor <iant@golang.org>
Wed, 26 Aug 2009 21:40:34 +0000 (14:40 -0700)
R=rsc
DELTA=1  (1 added, 0 deleted, 0 changed)
OCL=33891
CL=33891

src/pkg/reflect/value.go

index 014ea933c6eee215fd053fa2684b7d3521ca8f67..4ba1c2eec121c90e94b2e29c8961e7d48470bac8 100644 (file)
@@ -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));
 }