90degs2infty
90degs2infty
Consider the following adapted example based on [C.67: A polymorphic class should suppress public copy/move](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c67-a-polymorphic-class-should-suppress-public-copymove) (there now is an additional class `E` derived from `D` and `D` does not comply...
When looking for documentation, one (easily?) ends up reading outdated docs. Reason: the [`README.md` references the documentation](https://github.com/fsfe/reuse-tool/blob/0e111c423ccf927f73a9ae7b39d3f88268b015b9/README.md?plain=1#L19) at `https://reuse.readthedocs.io`. Clicking that link, one gets redirected to `https://reuse.readthedocs.io/en/v1.0.0/` (note the trailing...
Currently, the project's source files are collected via globbing. `src/libdbcppp/CMakeLists.txt` is one example (see [lines 31ff](https://github.com/xR3b0rn/dbcppp/blob/59ee9e862f29f14de705f9b0ac3263e63e701db4/src/libdbcppp/CMakeLists.txt#L31-L39)), but this certainly applies to other `CMakeLists.txt` as well. The docs explicitly discourage this...
The toplevel `CMakeLists.txt` currently includes the dependency `libxmlmm` "by hand" (see [lines 26ff](https://github.com/xR3b0rn/dbcppp/blob/59ee9e862f29f14de705f9b0ac3263e63e701db4/CMakeLists.txt#L26-L49)). Consider including the dependency via its CMake integration (e.g. some call to `add_subdirectory`).
The `CMakeLists.txt` currently reads ([line 9](https://github.com/xR3b0rn/dbcppp/blob/59ee9e862f29f14de705f9b0ac3263e63e701db4/CMakeLists.txt#LL9C1-L9C27)): ```cmake set(CMAKE_CXX_STANDARD 17) ``` When using an old compiler that does not support `c++17`, CMake will silently fall back to an older standard. This...
Currently, the ' Configuration files' section under 'Installation' (find it [here](https://podman.io/docs/installation#configuration-files)) does not reference user local config files living under `$HOME/.config/containers/`. Is there a reason to omit these user local...
According to `defmt_brtt`'s [docs](https://github.com/datdenkikniet/defmt-brtt#user-code-required-for-use), one has to initialize `defmt_brtt` before using it: > You must also, somewhere in your code before calling any defmt logging function, call the `defmt_brtt::init!` macro....
### I have found these related issues/pull requests Slightly related: in #148 , usage of user-defined types for read access is discussed. The discussion ends on a couple of comments...