Max Kupriianov

Results 198 comments of Max Kupriianov

> Looks like a problem with your watchman installation if your OS actually supports the feature: I'm on macOS Mojave 10.14.3 (18D109)

> This can all be done manually, but it becomes time consuming and error prone. I'm investigating automating the process of generating the necessary logic to pass pointers and what-not...

Failing code: ```c mat4x4 S = {{0, u[2], -u[1], 0}, {-u[2], 0, u[0], 0}, {u[1], -u[0], 0, 0}, {0, 0, 0, 0}}; ```

@cznic Maybe we need an option to avoid going into function body declarations? As I want to use CC only on the API of header files, but too lazy to...

Hey, it worked for my case well! Although I discovered another one: Repro code: ``` #include #define LINMATH_H_DEFINE_VEC(n) \ typedef float vec##n[n]; LINMATH_H_DEFINE_VEC(4) typedef vec4 mat4x4[4]; ``` Panic in case...

The latest fix is for `setElements`, but this happens in the source code which I had removed because I'm interested in the headers only. In my minimal example above it...

> Yeah, originally the intent was not to publish cc. It was an internal package and it was made to handle exactly one particular C file so I handled only...

What's patience? 😄 I rewrote entire lib in Go https://github.com/xlab/linmath

Given that this seems to be not a trivial fix, let's keep this open :)

Clarification: the bug is somewhere near YAML generation, because JSON looks ok: ```json "definitions": { "ServiceTestMainRequestBody": { "title": "ServiceTestMainRequestBody", "type": "object", "properties": { "field1": { "type": "string", "example": "0xffff" },...