- 09 Sep, 2010 5 commits
-
-
Ian Lance Taylor authored
explicit.go:36:4: error: incompatible types in assignment (need explicit conversion) explicit.go:41:4: error: incompatible types in assignment (type has no methods) explicit.go:42:4: error: incompatible types in assignment (need explicit conversion) explicit.go:45:5: error: incompatible types in assignment (need explicit conversion; missing method ‘N’) explicit.go:48:9: error: invalid type conversion (need explicit conversion; missing method ‘N’) explicit.go:51:4: error: incompatible types in assignment explicit.go:51:7: error: invalid type conversion (need explicit conversion) explicit.go:57:10: error: impossible type assertion: type does not implement interface (type has no methods) explicit.go:62:10: error: impossible type assertion: type does not implement interface (incompatible type for method ‘M’ (different number of parameters)) explicit.go:67:5: error: incompatible type in initialization (type has no methods) explicit.go:68:5: error: incompatible type in initialization (incompatible type for method ‘M’ (different number of parameters)) explicit.go:70:11: error: invalid type conversion (type has no methods) explicit.go:71:11: error: invalid type conversion (incompatible type for method ‘M’ (different number of parameters)) R=rsc CC=golang-dev https://golang.org/cl/2139044
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/2128047
-
Joe Poirier authored
Use OS rather than compiler specific flag the same way that __FreeBSD__, __APPLE__, __OpenBSD__, and __linux__ are used. _WIN32 is defined by GCC (and others) on windows for Win32 and Win64 applications. _WIN32 is set by default for several other windows based compilers: DMC, MSVC, Intel, Watcom, LCC. Although the change is for consistency, it allows the Go tools to be compiled with non-Mingw GCC distributions and non-GCC compilers that support the GCC extensions. R=rsc, brainman, vcc CC=golang-dev https://golang.org/cl/2168043
-
Scott Lawrence authored
Fixes #382. R=gri, cw, r, rsc CC=golang-dev https://golang.org/cl/1957045
-
Alex Brainman authored
R=rsc, r2 CC=golang-dev https://golang.org/cl/2135045
-
- 08 Sep, 2010 8 commits
-
-
Andrew Gerrand authored
Fixes #1046. R=rsc, iant CC=golang-dev https://golang.org/cl/2102043
-
Andrew Gerrand authored
Fixes #1088. R=gri, iant CC=golang-dev https://golang.org/cl/2157043
-
Ian Lance Taylor authored
bug299.go:16:2: error: expected field name bug299.go:17:2: error: expected field name bug299.go:18:3: error: expected field name bug299.go:25:9: error: expected receiver name or type bug299.go:26:10: error: expected receiver name or type bug299.go:27:9: error: expected receiver name or type R=rsc CC=golang-dev https://golang.org/cl/2150044
-
Ian Lance Taylor authored
bug298.go:10:2: error: expected declaration bug298.go:10:25: error: expected ‘;’ or newline after top level declaration bug298.go:10:25: error: expected declaration R=rsc CC=golang-dev https://golang.org/cl/2156046
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/2156045
-
Jukka-Pekka Kekkonen authored
Fixes #1080. R=rsc CC=golang-dev https://golang.org/cl/2158043
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/2121045
-
Robert Griesemer authored
- in prep. for some restructuring to be able to better deal with very large file systems - moved a utility function into index.go - no functionality changes, only code reorg. R=r, adg1 CC=golang-dev https://golang.org/cl/2098044
-
- 07 Sep, 2010 14 commits
-
-
Robert Griesemer authored
Also: Added examples for slices with omitted index expressions. R=r, rsc CC=golang-dev https://golang.org/cl/2106047
-
Scott Lawrence authored
See also https://golang.org/cl/1957045/ R=gri, rsc, r CC=golang-dev https://golang.org/cl/2163042
-
Russ Cox authored
R=r, gri1 CC=golang-dev https://golang.org/cl/2119044
-
Jukka-Pekka Kekkonen authored
Fix building on GNU Make 3.82 (caused by mixed implicit and normal rules). The issue was introduced in changeset 6110:ca0beac3b543. R=rsc CC=golang-dev https://golang.org/cl/2100044
-
Robert Griesemer authored
R=iant CC=golang-dev https://golang.org/cl/2128045
-
Russ Cox authored
TBR=r CC=golang-dev https://golang.org/cl/2140043
-
Russ Cox authored
Old code was using recursion to traverse object graph. New code uses an explicit stack, cutting the per-pointer footprint to two words during the recursion and avoiding the standard allocator and stack splitting code. in test/garbage: Reduces parser runtime by 2-3% Reduces Peano runtime by 40% Increases tree runtime by 4-5% R=r CC=golang-dev https://golang.org/cl/2150042
-
Russ Cox authored
R=gri CC=golang-dev https://golang.org/cl/2144042
-
Russ Cox authored
Fix suggested by Albert Strasheim. R=adg CC=golang-dev https://golang.org/cl/2154041
-
Nigel Tao authored
R=rsc CC=golang-dev https://golang.org/cl/2166042
-
Brad Fitzpatrick authored
We were using the 64-bit struct with the old 32-bit system calls. http://code.google.com/p/go/issues/detail?id=1083 This also fixes up mksyscall.sh to generate gofmt-compliant code. R=rsc CC=golang-dev, kaib https://golang.org/cl/2148042
-
Nigel Tao authored
R=r CC=golang-dev https://golang.org/cl/2138045
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/2165042
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/2141043
-
- 06 Sep, 2010 1 commit
-
-
Nigel Tao authored
single event channel. A quit event is now represented by closing that channel. R=r, rsc, nigeltao CC=golang-dev https://golang.org/cl/2114042
-
- 05 Sep, 2010 1 commit
-
-
Anthony Martin authored
R=r, rsc CC=golang-dev https://golang.org/cl/2144043
-
- 04 Sep, 2010 5 commits
-
-
Rob Pike authored
Also add exporter.Drain() to wait for completion. This makes it possible for an Exporter to fire off a message and wait (by calling Drain) for the message to be received, even if a client has yet to call to retrieve it. Once this design is settled, I'll do the same for import send. Testing strategies welcome. I have some working stand-alone tests. R=rsc CC=golang-dev https://golang.org/cl/2137041
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/2160041
-
Rob Pike authored
R=gri CC=golang-dev https://golang.org/cl/2116043
-
Rob Pike authored
The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev https://golang.org/cl/2157041
-
Rob Pike authored
Fixes #1075. R=gri CC=golang-dev https://golang.org/cl/2104048
-
- 03 Sep, 2010 6 commits
-
-
Russ Cox authored
The makefiles for prof and cov use it already. (It's also in Make.clib.) R=adg CC=golang-dev https://golang.org/cl/2036045
-
Russ Cox authored
(Following new convention.) Fixes #1063. R=adg CC=golang-dev https://golang.org/cl/2115042
-
Robert Griesemer authored
Solves the (English) peg solitaire game. The board is represented by a 1-dimensional array for easy representation of directions with a single integer. The board's contents are chosen such that it can be printed with a direct string() conversion. R=r CC=adg, golang-dev https://golang.org/cl/2066042
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/2121042
-
Nigel Tao authored
image's color model and dimensions without allocating and decoding its actual pixels. Fixes #695. R=r CC=golang-dev https://golang.org/cl/2151042
-
Andrew Gerrand authored
R=rsc, r CC=golang-dev https://golang.org/cl/2112042
-