Commit 8155ff54 authored by Alex Brainman's avatar Alex Brainman

go/build: use back quotes for regular expression

R=adg
CC=golang-dev
https://golang.org/cl/4643045
parent eaa082f6
......@@ -348,7 +348,7 @@ func (b *build) gccArgs(args ...string) []string {
return append(a, args...)
}
var cgoRe = regexp.MustCompile("[/\\:]")
var cgoRe = regexp.MustCompile(`[/\\:]`)
func (b *build) cgo(cgofiles []string) (outGo, outObj []string) {
// cgo
......
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