Thiago Adams
Thiago Adams
There are some details. structs declared inside arguments does not have global scope. Then cake would have to introduce one declaration. or, if the user puts the like here ```c...
```c int f(int condition){ int * _Owner p = 0; try { int * _Owner p2 = p; if (condition) throw; p = 0; } static_debug(p); //shows "null" - it...
some warning are create in flow analysis ..the problem flow analysis work as second pass on AST were tokens are not present. Each flow analysis runs after the end of...
I don't have experiencing with merging/conflicts in git. I will do the changes manually.
This is the output (after some updates) in my machine inside vscode (build) I have some warning but not errors. The ouput is part from GCC and part from cake....
this tool is amazing! thanks. The way I was doing is convert the standard version to a text format. The objective is to use with diff tools. I have a...
added in docs
I will write a list to remember.. ``` defer-statement: "defer" secondary-block try-statement: "try" secondary-block "try" secondary-block "catch" secondary-block /*C++ 17 if with initialization extension - just copy from c++*/ /*...
unit test created
working. ```c #pragma safety enable struct Z{ int dummy; }; struct Y{ int dummy; struct Z * _Owner pZ; }; struct X{ struct Y * _Owner pY; }; struct X...