Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem compiling on debian with go 1.11 #30

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions h5t_shim.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@ var (
T_GO_STRING *Datatype = makeGoStringDatatype()
)

//
var h5t_VARIABLE int64 = C.H5T_VARIABLE
// the only version portable way to do this...<1.11 complains if this is uint64 and >=1.11 complains if it's int64
var h5t_VARIABLE uint64 = ^uint64(0)

func makeGoStringDatatype() *Datatype {
dt, err := T_C_S1.Copy()
Expand Down