Jason Erb
Jason Erb
Sorry for the late reply. The idea with panmorphism is that the type resides with the operator, not the operand. So {1}, if passed to a operator that interprets operands...
Nope; I invented the term. The best description I can give is the one in the documentation here: http://www.om-language.org/index.html#language__data__ But I'm happy to answer any questions.
I would prefer to just use Xcode's clang vs. having a separate clang install on my machine. As mentioned: I stalled in trying to build it myself because I use...
The tricky thing with fixing this is that `WGPUSwapChain` is a typedef of `struct WGPUSwapChainImpl *`, which is an incomplete type at this point, so calling `delete` on it is...
The problem in my case was trying to run on ARM64. However, libclang-cpp# should be added as a dependency of mull-# to ensure that lib clang-cpp.so.# is installed.
Perhaps there should be an option analogous to the constructor initialization list (`indent_ctor_init = -2`), but for the base class list.
Here is a hacky patch that copies code from the `indent_constr_colon` block to use `indent_ctor_init` if `indent_class_colon` is true, which allows me to set `indent_class_colon=true` and `indent_ctor_init=-2` to get the...
The above fix unfortunately doesn't fix my use case. I'll take a look at implementing it.
(In fact, it breaks my hack-fix above in cases when there are multiple base classes on separate lines...) *Edit:* It looks like my hack was broken by changes elsewhere; it...