David Maas

Results 177 comments of David Maas

In an [unrelated discussion about Clang on Twitter](https://twitter.com/PathogenDavid/status/1333440496375656457) I found that Clang's individual command line tools are nicely self-contained. So I think it would be pretty reasonable that we just...

Along with this, make sure to write documentation for `InlineExportHelper`. (I did not write documentation when committing it because how you use it depends largely on this issue being completed.)

When we do this we should also de-duplicate the inline export helpers and emit them in some sorted order. (The former should fall out of this naturally.) Right now when...

As a workaround for now, developers can manually cast the destructor pointer to the correct ABI and call it that way, IE: ```cpp ((delegate* unmanaged[Cdecl])actorOutputStream.VirtualMethodTablePointer->__DeletingDestructorPointer)(&actorOutputStream, 0); ```

One thing I've realized is that once `DeduplicateNamesTransformation` is namespace-aware, it is possible for name collisions to form when two namespaces with same-name types have using statements. Not sure if/how...

Just last week I was talking to a client about how much we wanted to bother with Windows 7 as we transition their app from .NET Framework to modern .NET,...

Some extra thoughts that I didn't want to wedge in above: I wasn't sure whether or not to report this here or in the MSBuild repo. It's not clear if...

I encountered this today while upgrading my graphics drivers for https://github.com/AvaloniaUI/XamlControlsGallery/issues/4 while XamlControlGallery was running. Probably not all that useful, but here's the exception and stack trace: Click to expand...

@paulozemek The default assignment occurs before your `intValue` assignment: > 2\. When an instance variable _v_ within `this` does not meet the requirements, or any instance variable at any level...

@vladd I feel like anonymous namespaces are borderline trivia in C++. It's not really obvious what they do unless you already know whereas something like `file private class` is more...