Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for notreally (0.18 sec)

  1. src/cmd/cgo/gcc.go

    	c.float64 = c.Ident("float64")
    	c.complex64 = c.Ident("complex64")
    	c.complex128 = c.Ident("complex128")
    	c.void = c.Ident("void")
    	c.string = c.Ident("string")
    	c.goVoid = c.Ident("_Ctype_void")
    
    	// Normally cgo translates void* to unsafe.Pointer,
    	// but for historical reasons -godefs uses *byte instead.
    	if *godefs {
    		c.goVoidPtr = &ast.StarExpr{X: c.byte}
    	} else {
    		c.goVoidPtr = c.Ident("unsafe.Pointer")
    	}
    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