Dimitrij Mijoski

Results 44 comments of Dimitrij Mijoski

The `ICONV _ ` This rule says that if we have a string that ends with as the before last char, and then with arbitrary character, strip the very last...

> Presumably, we can use the `.TP` macro. The macro `.TP` should be the default for description lists instead of the current combination of `.sp`, `.RS` and `.RE`. When one...

A library should not bundle/package other libraries, otherwise we can very easily get the diamond problem and ODR violations. For example, on Ubuntu or Debian, if you install `libcereal-dev rapidjson-dev`...

> Would it be possible to add man page in source tarball or release asset after generating it from markdown file? No. I might change to a different generator some...

@badshah400 can you explain more on this stuff you call Ring1? Is there a list of software that is part of it? I have not see another distro with such...

> ``` > : term > definition > > : otherterm > definition > ``` That does not seem to work in the [online version of djot](https://djot.net/playground/?text=%3A+term%0A++definition%0A%0A%3A+otherterm%0A++definition&mode=html&sourcepos=false). It puts the...

What you need to do is to not consume Catch2 via `add_subdirectory()`, but instead use `find_package(Catch2)`. With `find_pacakge()` you make sure that Catch2 is already installed, even before building your...

> I would also add that FetchContent is not an hack but a very valid solution to a big problem. FetchContent + `add_subdirectory`, git submodule + `add_subdirecory` or manually copied...

Ping, any comments about this? One should take into account the user feedback too, not only the LEWGI feedback. The API design of v1 is better using output parameters for...

> I would definitely prefer v2. Output parameters always get clunky in my experience. C++ Core Guidelines authors seem to agree: [F.20](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rf-out) At the end of the guideline you can...