summaryrefslogtreecommitdiff
path: root/src/pkg/exp
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-03-02 17:23:07 -0800
committerRobert Griesemer <gri@golang.org>2010-03-02 17:23:07 -0800
commit9410f2b194ecc7605f3a09cd50f44239ddee0ee0 (patch)
tree302ff5a647bcb02e8275973370c72ce8a31e1ba0 /src/pkg/exp
parentdaae984c2784aa31de9f3d3d1dae208c0c789901 (diff)
downloadgolang-9410f2b194ecc7605f3a09cd50f44239ddee0ee0.tar.gz
gofmt: fix alignment of multi-line var declarations
- gofmt -w src misc R=rsc, r CC=golang-dev http://codereview.appspot.com/223101
Diffstat (limited to 'src/pkg/exp')
-rw-r--r--src/pkg/exp/ogle/rruntime.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pkg/exp/ogle/rruntime.go b/src/pkg/exp/ogle/rruntime.go
index e3bdcbe1f..46c40e85f 100644
--- a/src/pkg/exp/ogle/rruntime.go
+++ b/src/pkg/exp/ogle/rruntime.go
@@ -214,7 +214,7 @@ type runtimeValues struct {
String, Slice, Eface *remoteType
// Runtime type structures
Type, CommonType, UncommonType, StructField, StructType, PtrType,
- ArrayType, SliceType *remoteType
+ ArrayType, SliceType *remoteType
// Runtime scheduler structures
Stktop, Gobuf, G *remoteType
// Addresses of *runtime.XType types. These are the
@@ -222,12 +222,12 @@ type runtimeValues struct {
// reflection to fill these in from the remote symbol table,
// so the names must match the runtime names.
PBoolType,
- PUint8Type, PUint16Type, PUint32Type, PUint64Type, PUintType, PUintptrType,
- PInt8Type, PInt16Type, PInt32Type, PInt64Type, PIntType,
- PFloat32Type, PFloat64Type, PFloatType,
- PArrayType, PStringType, PStructType, PPtrType, PFuncType,
- PInterfaceType, PSliceType, PMapType, PChanType,
- PDotDotDotType, PUnsafePointerType proc.Word
+ PUint8Type, PUint16Type, PUint32Type, PUint64Type, PUintType, PUintptrType,
+ PInt8Type, PInt16Type, PInt32Type, PInt64Type, PIntType,
+ PFloat32Type, PFloat64Type, PFloatType,
+ PArrayType, PStringType, PStructType, PPtrType, PFuncType,
+ PInterfaceType, PSliceType, PMapType, PChanType,
+ PDotDotDotType, PUnsafePointerType proc.Word
// G status values
runtimeGStatus
}