Markus Junginger

Results 23 issues of Markus Junginger

E.g. clang-tidy complains about generated code: ``` error: use std::make_unique instead [modernize-make-unique,-warnings-as-errors] auto object = std::unique_ptr(new MyEntity()); ```

In addition to existing "optional" support for C++, there should also be a variant to represent "null" values in FlatBuffers via special values. Why? The current C++11 solution with `unique_ptr`...

Let's say we have a file mydir/my.fbs which also contains `include "myinclude.fbs";`, with myinclude.fbs also in mydir. The generator should change into the dir containing the processed file (mydir), to...