Cam Mannett
Cam Mannett
[DWARFContext::getEHFrame()](https://llvm.org/doxygen/DWARFContext_8cpp_source.html#l00886) is implemented like this (at the time of writing): ```c++ Expected DWARFContext::getEHFrame() { if (EHFrame) return EHFrame.get(); const DWARFSection &DS = DObj->getEHFrameSection(); DWARFDataExtractor DebugFrameData(*DObj, DS, isLittleEndian(), DObj->getAddressSize()); auto DF...
Currently it will silently truncate the output.
`alias_group` and `one_of` add text to their help output, but there's no mechanism to override that for multi-lang support.
https://github.com/Neargye/magic_enum/blob/master/doc/reference.md#enum_cast
For reasons I cannot understand MSVC v19.30 refuses to compile the unit tests - but we would like to support it! - [ ] Get MSVC compiling the unit tests...
Add a link to it in the README.md.
Look into other documentation generators, but only ones that can consume Doxygen-style comments - we're not making extensive changes to the source to accommodate this. If none suitable are found,...
Research into how other software does it. Having the node's return error types will allow for policy-based error handling in the root (which will throw by default).
`policy::validator`'s `static_assert` strings are a bit vague due to the lack of type names in the messages. Use the answer [here](https://stackoverflow.com/a/66551751/498437) to craft a compile time string. What needs investigating...