Sean Marshallsay
Sean Marshallsay
Currently ``` rust type MyOption = Option; ``` will be converted into ``` c typedef Option MyOption; ``` which is very obviously wrong, it should just be ignored. Also generics...
But only when it makes sense. For example a public C function which is not `#[no_mangle]` is likely that way because the author forgot to include it. On the other...
As it stands any typedefs of that form which are not generic will be put into the header, this should cover most use cases but it's not impossible for people...
Let's face it, I'm a bit crap at writing documentation. I'm thinking the module level docs should start by explaining how each Item is converted including pitfalls then go on...
Running alejandra on this file ```nix {python = pkgs.python3.withPackages (ps: [rmt-utilities] ++ (with ps; [bunch codecov coverage docutils flake8 ipython matplotlib numpydoc sphinx-copybutton sphinx_rtd_theme sphinx-autoapi sphinx-argparse sphinx twine versioneer]));} ```...
This PR updates the CMake module in the README to allow a git tag to be specified when using the `fetch` method. This allows people to use a specific version...
With the following files in a directory ```ruby # Gemfile source 'https://rubygems.org' gemspec ```` ```ruby # foo.gemspec Gem::Specification.new do |spec| spec.name = 'foo' spec.version = '0.0.0' spec.authors = ["me"] spec.summary...
I use [direnv](https://direnv.net/) and one of the things it does is create an immutable `.direnv/` directory (or possibly it just creates links to the Nix store, which is immutable, I...
### Steps To Reproduce I've not yet found a way to reliably force this bug to occur (i.e. without having to wait), but the following steps do eventually trigger the...
I wanted to use the Bluesky icon from Font Awesome 6, but you can't load both `fontawesome5` and `fontaweseom6` at the same time so it required me to make changes...