aboutsummaryrefslogtreecommitdiff
path: root/patches/remove-uint.diff
Commit message (Collapse)AuthorAge
* Re-generate bindings in src/ffi.rsRobin Krahl2020-09-20
| | | | | | | | Older versions of bindgen rendered C++ doc comments as Rust doc comments using the /// syntax. Newer versions use the doc attribute instead. This patch re-generates the src/ffi.rs file with bindgen 0.55.1 so that it uses the new format. This makes it easier to perform changes in the future.
* Remove unnecessary __uint*_t typedefsRobin Krahl2020-09-20
While bindgen is able to replace the C uint types with the correct Rust types, it still generates typedefs for __uint{8,16,32,64}_t [0]. We don’t need these typedefs, so we add a patch to remove them. [0] https://github.com/rust-lang/rust-bindgen/issues/1663