From 63c82ffa82536cda16370e80bed7f6e502cdfd36 Mon Sep 17 00:00:00 2001 From: Ivan Krasin Date: Fri, 30 Mar 2012 21:39:09 +0000 Subject: gcd.go: drop unused comments --- gcd.go | 6 ------ 1 file changed, 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) } -- cgit v1.2.3