Devin Pohl
Devin Pohl
Currently, the only unsafe portion of this crate is that trying to patch a parent function (without the unsafe `force`) causes a deadlock. Using the `backtrace` crate it may be...
I intend to work on implementing methods when I next have time. An implementation draft can be found in #7. I'm currently concerned with the need to import traits to...
As mentioned in [this](https://reddit.com/r/rust/comments/kfwtd9/hotpatch_safely_changing_function_definitions_at/ggdf4s4?context=3) reddit comment, if a patch implementation from an external library has `unsafe` code then `patchable` functions should require `unsafe`. As this crate already exports some information...
The following allows for loading this package via quelpa directly from .emacs as follows: ```elisp (use-package glsl-mode) (use-package ob-glsl :after glsl-mode :quelpa (ob-glsl :fetcher github :repo "finalpatch/ob-glsl" :files ("*.el" "*.cpp"...
In my project, I have a large `unordered_map` that I use to store command line debug flags and attributes for those flags. I was performing some copy-paste programming to add...