Daniel Jennings

Results 2 issues of Daniel Jennings

TLDR is that `_mi_auto_process_init` attempts to reseed the main thread's random ctx (which would cause BCrypt to get loaded there) but there's a bug preventing that from working. Starting point:...

https://github.com/dotnet/ClangSharp/blob/d431b9098eda8cd0b7de12dcf449b7afad88c286/sources/ClangSharp/Cursors/Decls/UsingEnumDecl.cs#L14 As you can see here, the `expectedCursorKind` for `UsingEnumDecl` is `CXCursor_UnexposedDecl`, but when we run this code against a `using enum XXX;` statement in our codebase, the `cursor.kind` is...