Yankes
Yankes
``` for(auto& [a,b] : node) { } ``` Is valid code. as value returned is class that inherit `std::pair` and `YAML::Node`. If you want string key then you can add...
For my poroject I hack `LambdaExpressionVistor` to better work wilth nulls: ```csharp internal class HackExpressionVistor : LogicalExpressionVisitor { private readonly IDictionary _parameters; private L.Expression _result; private readonly L.Expression _context; private...
Ok, probaby in next week I will have some free time to prepare PR for this.
In week or two I will go back to this PR and analyze it in detail and possibly alter it a bit and merge manually.
There is workaround, if you use `__attribute__ ((target("fma"), optimize("-ffast-math")))` you can force GCC to change target processor per function and use SSE e.g.: http://quick-bench.com/SBnGN_2uHuwiFi5nIzekFVKK3ic One important caveat is that test...
> To be honest I want to push the unity build to much bigger project. I do not know CMake well. So I want to try first with something smaller...