Bulat-Ziganshin
Bulat-Ziganshin
Filenames may have up to 32K chars (and eben more bytes) if they use UNC names like "\?\UNC-SHARE..."
I think it's rather simple and such solution is already used ib a lot of software including mine: library works with UTF-8. When it calls WinAPI, UTF-8 strings are recoded...
i'm not yet lua-intf user, so i can be wrong, but overall it should work like that: ```C auto lambda = [&](CBindInstance& it, const char* name) { return it->Getter(name);}; binding.addProperty("memberName",...
well, as i see from lua-intf docs, class property can't have parameters (at least this possibility isn't mentioned here). so, may be you sue wrong instrument? and the only way...
Are you made sure that AppVeyor compiled with latest 15.7 sub-release? BTW, I really like the "What about" section. Now MSVC fully conforms to Standard, except that it have the...
Well, like Win10, VS2017 compiler is updated each 3-6 months. Since its debut a year ago, we got 15.3, 15.5 and now 15.7 releases that made changes to compiler (even...
I wonder whether you (and goldbolt) are really using 15.7 or year-old basic MSVC 2017 compiler
@alexey-milovidov you may be interested in https://encode.su/threads/4041-Iguana-a-fast-vectorized-compressor
As I wrote [here](https://github.com/nim-lang/Nim/issues/7430#issuecomment-406054435), I propose: 1. use "str".parse(bool) syntax for operation opposite to '$' 2. use longer 'convertTo' name instead of bare 'to' for data type conversions which keeps...
May be that's irrelevant to this particular discussion, but I always wondered - why Nimscript? We can compile C code to asm with 100 KB TinyCC - no need to...