You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix Debug impls for COM interfaces
Currently, the Debug impl for COM interfaces shows the recursive
interface chain, like so:
```
IDWriteFontFace5(IDWriteFontFace4(IDWriteFontFace3(IDWriteFontFace2(IDWriteFontFace(0xNNN)))))
```
That's not very useful. This PR trims it down to just the current interface:
```
IDWriteFontFace5(0xNNN)
```
* fix build break
---------
Co-authored-by: Arlie Davis <[email protected]>
0 commit comments