Miki

Results 152 comments of Miki

Thanks for sharing your idea. Such post-processing should work.

If I got it correctly, answer is yes, we consistently do not implement any argument validity check in python. The main reason is that we use type annotations and [mypy](http://mypy-lang.org/)....

Thank you for pointing this out. You are right, this is a real pain in generated C++ code and this solution is bad from object design point of view. Recently,...

Probably SonarCloud rule "Signed and unsigned types should not be mixed in expressions" could be used for this. We will investigate it during the current milestone.

@mohammedRafeeque, we have tried to use the SonarCloud rule "Signed and unsigned types should not be mixed in expressions". Unfortunatelly, this rule does not catch anything from given xlsx sheet....

Unfortunately, the corresponding SonarCloud rule did not catch anything (clang-tidy and compiler warnings did not catch anything as well). We are not able to reproduce it and we are not...

We have added [optimizations](https://github.com/ndsev/zserio/blob/master/compiler/extensions/cpp/README.md#optimizations) section into the documentation of the C++ generator to state explicitly that splitting schema into two parts and generating them independently cannot guarantee correct functionality. The...

The current solution introduces new command line argument `-withBitPositionCode`. This command line argument enables generating of the `bitPosition()` method for all Structure, Choice and Union types. The `bitPosition()` method returns...

There is a new request not to get only bit positions but bit sizes as well. This is because it is very difficult to get correct bit sizes for packed...