Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(394)

Unified Diff: src/pkg/unicode/maketables.go

Issue 2763041: code review 2763041: use copy (Closed)
Patch Set: code review 2763041: use copy Created 14 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/testing/regexp.go ('k') | src/pkg/xml/xml.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/unicode/maketables.go
===================================================================
--- a/src/pkg/unicode/maketables.go
+++ b/src/pkg/unicode/maketables.go
@@ -496,9 +496,7 @@
s, ok := scripts[name]
if !ok || len(s) == cap(s) {
ns := make([]Script, len(s), len(s)+100)
- for i, sc := range s {
- ns[i] = sc
- }
+ copy(ns, s)
s = ns
}
s = s[0 : len(s)+1]
« no previous file with comments | « src/pkg/testing/regexp.go ('k') | src/pkg/xml/xml.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b