Enrico Seiler
Enrico Seiler
**Describe the bug** We have some (maybe unusual) code that's documented like this: ```cpp //!\interface detail::a /*!\name Some documentation for detail::a. * \brief detail::a should have these member functions: *...
The workaround works, but it has quite some code smell to it.
Resolves https://github.com/seqan/seqan3/issues/3041
- [x] Create a release branch, e.g. `release-[VERSION]`, and enable branch protection in the repository settings. - [x] Update copyright year. https://github.com/seqan/seqan3/pull/3011 - [x] Create at least one pre-release s.t....
`std::vector` optimizes assignments to `std::copy` (basically memcpy) iff the value_type is trivial. If not, it will use `std::unintialized_copy` which will use placement-new and is around 2-3 times slower. | Method...
## Platform - SeqAn version: - Operating system: - Compiler: ## Description After https://github.com/seqan/seqan3/pull/2276, tests and snippets using the `parallel_queue` do not terminate if there are too many threads accessing...
**Describe the bug** Warning: ```text example/include/header.hpp:3: warning: \include{doc} file 'example/include/fragments/example.md' not found example/include/header.hpp:6: warning: Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference:...
**Describe the bug** Have a directory tree like this: ``` . ├── Doxyfile ├── file.hpp └── subfolder └── file.md ``` With `file.md`: ```md # A file {#md_file} Hello World. ```...