aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/go.test/test/fixedbugs/issue4326.dir/p1.go
blob: ab214befb4b82845b816c657e0581b416e0cb931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package p1

type O map[string]map[string]string

func (opts O) RemoveOption(sect, opt string) bool {
	if _, ok := opts[sect]; !ok {
		return false
	}
	_, ok := opts[sect][opt]
	delete(opts[sect], opt)
	return ok
}