deadlocklogic
deadlocklogic
Basically consider these 2 files: File1: ```C++ namespace ns { template struct Temp1 { template struct Temp2 {}; }; } // namespace ns ``` File2: ```C++ namespace ns { using...
@foonathan Why not using `dump-json` just to get around this `libclang` limitation?. Because the `feature/json` branch is far from complete. So instead of writing huge chunk of it, just patch...
Yes of course PR are awesome! I would really like to dig into a `libtooling` backend but I have trouble setting it up (what I am doing is using their...
@ThePhD Can you help me please?
Using: ```C++ std::wstring toUTF16(const std::string& f) { std::wstring temp; detail::toUTF16(f, temp); return temp; } ``` returns apparently an `UTF-8` string back to lua (maybe best way in most cases), but...
After many tries, I think wrappers should be the way to go, unless I want to sacrifice richer options, for instance `sol` obviously can't have options about `endianness` during runtime,...
Now this is more verbose, because every inherited class needs to be explicitly registered but compilation succeeds. If you don't want to use this fix, you can at least mention...
Well looks like the template semantics needs heavy refactoring then. Is anyone willing to work on this issue because right now template manipulation is so messy/obscure.
> I'll probably try to clean this up a bit, but won't do any too heavy refactoring as that would take too much time. I think getting rid of the...
After stumbling upon `TypeAlias` which has a `DescribedAliasTemplate` property, an elegant solution would be adding a `DescribedTemplate` property in `Declaration` which can be `null` if the declaration is not a...