John Peel
John Peel
### Operating System Linux ### What's the issue you encountered? ```rust #include enum E : u8 { A }; fn print_enum(E e) { std::print("e = {}", e); std::print("e == E::A...
**Description:** Code blocks inside of a list render weirdly with a code block inside a code block. **Input:** ```plaintext 1. test: ```python # coding: utf-8 class TestClass: def __init__(): pass...
## Current Options ### Full system emulation Full system emulation emulates a complete PC and requires a Windows license. | Option | Price | | ----------------- | --------------- | |...
The first function should probably be generic over the path type, and the second becomes obsolete.
https://github.com/solsticegamestudios/GModCEFCodecFix/blob/d45a8690f9dff2e7097cf1dceb71815ace6cbab4/src/main.rs#L123-L153 ```rust fn path_to_canonical_pathbuf(path: impl AsRef, checkdirempty: bool) -> io::Result { let pathbuf = path.as_ref().canonicalize()?; if checkdirempty && pathbuf_dir_not_empty(&pathbuf) { return Err(io::Error::other("directory not empty")); } Ok(pathbuf) } ``` `String` and...