Markus Zimmermann

Results 134 issues of Markus Zimmermann

1. Put the following into "$GOPATH/src/sourcegraph.com/sqs/goreturns/hey/ho.go" ```go // +build something package main func foo() { } ``` 2. Execute `goreturns -d $GOPATH/src/sourcegraph.com/sqs/goreturns/hey/ho.go` The execution will print the problem "no buildable...

"void" is not a valid Go type so it is questionable what we should do with it e.g. what should happen with a void pointer?

enhancement
help wanted

At the moment it is necessary to set CGO_CFLAGS and CGO_LDFLAGS manually using llvm-config to receive the correct directories. This would be unnecessary if pkg-config support would exist. This cannot...

enhancement
help wanted

After #123 is fixed and https://github.com/go-clang/gen/pull/121 and https://github.com/go-clang/bootstrap/pull/11 are merged, enable -msan if it is available for the Clang version, that is >= 3.8

enhancement
help wanted

After https://github.com/go-clang/bootstrap/pull/15 has been merged, it would be nice to add an example on how to statically link go-clang into a binary. There are some pointers in #116 but no...

enhancement
help wanted

I am trying to get the `-msan` flag working by eliminating all found problems but I think this is a hopeless case because I do not think that it is...

bug

It should not be possible to merge code which has open generation changes.

enhancement
help wanted

This issue should hold a collection of API names that are not as good looking as they could be - TUResourceUsageKind\* -> TranslationUnitResourceUsageKind* - SC_\* -> StorageClass_* We would need...

enhancement
help wanted

It looks like that we do not convert indexCallbacks and indexCallbacksSize to a slice. Are there maybe other instances we overlooked?

enhancement
help wanted

FromDirectory has an return argument of type CompilationDatabase_Error which should be the last argument because it is an error and the Go idiom is to put errors last, even if...

enhancement
help wanted