Daniil Dudkin
Daniil Dudkin
Hi! I faced the same issue but unfortunately I cannot provide an access to the repo. Images are located in `./images/` directory. In my markdown files I refer to images...
`data()` and `c_str()` docs are implemented by @DymOK93 Thanks!
The idea was not only to remove `.idea` from git. Making `.idea` version controlled is not a bad idea generally: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems In this project it contains info about code style:...
> > Instead of CLion-based code style checking we need to provide a clang-tidy config that defined code style. > > So this PR should be linked to #25 too....
I don't consider this as an issue. It will be a compile-time error anyway, when the type alias is used. I don't see any harm in postponing the compile-time error.
@abel-mak sure!
@abel-mak `from_chars` is not `constexpr` So: 1. For C++17 we can use `from_chars` and doesn't allow to call our function in the constant context 2. For C++20 with `if (std::is_constant_evaluated())`...
You can open the PR and I will take a look what have so far
@abel-mak I've looked on what you already written Below you can find rules from C++ Core Guidelines that will make your code better: 1. Do not declare before actual use...
You can open the PR: it's easier to review code with opened pull request