summaryrefslogtreecommitdiff
path: root/gcd.go
diff options
context:
space:
mode:
Diffstat (limited to 'gcd.go')
-rw-r--r--gcd.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcd.go b/gcd.go
index ede8be7..96f601b 100644
--- a/gcd.go
+++ b/gcd.go
@@ -18,8 +18,6 @@
package main
-// Both Google Go and GCC issue an error "imported and not used",
-// if imported and not used :-)
import (
"fmt"
"os"
@@ -30,10 +28,6 @@ func gcd2(a, b uint64) uint64 {
if b == 0 {
return a
}
- /* 6g issues an error "function ends without a return statement",
- if we use if ... {... return} else {... return}.
- But GCC doesn't.
- */
return gcd2(b, a%b)
}