Commit 8cdb7101 authored by Rob Pike's avatar Rob Pike

remove noisy print

SVN=114939
parent b7490382
...@@ -27,7 +27,6 @@ type Vector struct { ...@@ -27,7 +27,6 @@ type Vector struct {
// BUG: workaround for non-constant allocation. // BUG: workaround for non-constant allocation.
// i must be a power of 10. // i must be a power of 10.
func Alloc(i int) *[]Element { func Alloc(i int) *[]Element {
print "Alloc ", i, "\n";
switch i { switch i {
case 1: case 1:
return new([1]Element); return new([1]Element);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment