Simon Lundmark
Simon Lundmark
When CreateProcess() returns 0, the correct error value should be shown using GetLastError() instead of errno. errno is only c runtime and this is a WinApi function.
When trying to use the documentation on Unit Script Template to create my own Unit Type, it seems to fail to use the code provided. My definition: ``` module("my_compiler", package.seeall)...
One of the biggest issues with the bitsquid engine is that they have their content-compilers built into the engine instead of having them separated. This causes issues such as not...
So we've had some problems with this: https://github.com/chadaustin/sajson/blob/eeaa7ee736ec2f826c7a30c0e340e5331d8efc57/include/sajson.h#L1115 It says "size_in_words" which is a very unusual way to describe the size of a buffer. I'd say it's very not standard....
It would be really sweet if we could have an api for manually adding types/structs etc to a type library. That would allow the functionality for creating custom parsers more...
It would be really nice if we could have a clang format file to run all code through before committing it. That way we would fix all issues with whitespaces...
https://pastecode.io/s/1j7TQi4rOE This patch fixes an issue with writing a c-header with inline-arrays of enums. I expect there to be a better solution for this issue maybe generally, but unfortunately I...
In dl_load_txt_build_default_data() there is nothing that validates that the member's default_value_size is larger than or equal to its size. This causes dl_txt_pack_write_default_value()'s final if-statement (if( member_size != member->default_value_size ) to...
Example: ``` { "module" : "test", "types" : { "mytype_1" : { "members" : [ { "name" : "submember1", "type" : "string[]", "default" : [ "apa" ] }, { "name"...