Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
f492bd70
Commit
f492bd70
authored
Mar 22, 2011
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gob: fix up ugly formatting introduced by buggy (now fixed) gofmt.
R=rsc CC=golang-dev
https://golang.org/cl/4281065
parent
544cf759
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
28 deletions
+7
-28
src/pkg/gob/type.go
src/pkg/gob/type.go
+7
-28
No files found.
src/pkg/gob/type.go
View file @
f492bd70
...
@@ -233,34 +233,13 @@ var (
...
@@ -233,34 +233,13 @@ var (
tComplex
=
bootstrapType
(
"complex"
,
(
*
complex128
)(
nil
),
7
)
tComplex
=
bootstrapType
(
"complex"
,
(
*
complex128
)(
nil
),
7
)
tInterface
=
bootstrapType
(
"interface"
,
(
*
interface
{})(
nil
),
8
)
tInterface
=
bootstrapType
(
"interface"
,
(
*
interface
{})(
nil
),
8
)
// Reserve some Ids for compatible expansion
// Reserve some Ids for compatible expansion
tReserved7
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
tReserved7
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r7
int
})(
nil
),
9
)
r7
int
tReserved6
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r6
int
})(
nil
),
10
)
})(
nil
),
tReserved5
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r5
int
})(
nil
),
11
)
9
)
tReserved4
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r4
int
})(
nil
),
12
)
tReserved6
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
tReserved3
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r3
int
})(
nil
),
13
)
r6
int
tReserved2
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r2
int
})(
nil
),
14
)
})(
nil
),
tReserved1
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r1
int
})(
nil
),
15
)
10
)
tReserved5
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r5
int
})(
nil
),
11
)
tReserved4
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r4
int
})(
nil
),
12
)
tReserved3
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r3
int
})(
nil
),
13
)
tReserved2
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r2
int
})(
nil
),
14
)
tReserved1
=
bootstrapType
(
"_reserved1"
,
(
*
struct
{
r1
int
})(
nil
),
15
)
)
)
// Predefined because it's needed by the Decoder
// Predefined because it's needed by the Decoder
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment