Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Belt (0.17 sec)

  1. src/cmd/cgo/gcc.go

    		// this is created by code in this file.
    		if t.Name == "unsafe.Pointer" {
    			return ast.NewIdent("_cgo_unsafe.Pointer")
    		}
    	case *ast.ArrayType:
    		t1 := p.rewriteUnsafe(t.Elt)
    		if t1 != t.Elt {
    			r := *t
    			r.Elt = t1
    			return &r
    		}
    	case *ast.StructType:
    		changed := false
    		fields := *t.Fields
    		fields.List = nil
    		for _, f := range t.Fields.List {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top