Steffen Butzer

Results 74 comments of Steffen Butzer

Yeah the current implementation just does what's necessary to somehow get those ugly anonymous union members to work for the windows build :)

Since I didn't see this issue at first, the same comment here: m.TypeQualifier == nil => true

@cznic okay, I also thought about implementing it in `ccir/libc/generate.go` by generating guards for includes (in the optimal case one guard per file e.g. one guard including all imports coming...

go generate now fails. worktree changes due to using `go generate`: ```patch --- libc/ctype_windows_amd64.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libc/ctype_windows_amd64.h b/libc/ctype_windows_amd64.h index ae1630a..4fcd761...

@cznic spotted it by accident, that error seems resolved now.

The issue is that in `cznic/virtual` there're several files named like `fcntl_linux_amd64.go`, which contain functions like `c.getcwd`, so if you'd wanted to try it this way, you'll have some more...

@mersinvald I experimented with something like that previously in 2 stages [in this branch](https://github.com/steffengy/Rocket/commits/async): - using synchronous handlers backed by futures-cpupool & hyper down to async connections ergonomically the same...

@ovr that's something completely different http://php.net/manual/en/language.variables.scope.php#language.variables.scope.static

PHP behavior is that you can call instanceof on anything except constants. So something like ``` var_dump("test" instanceof STDClass); ``` fails, but when using a variable, any type is ok....