Will Eccles

Results 35 comments of Will Eccles

What is the output of `sh -c "command -v slackpkg"`?

Yeah, I don't know if that is going to be possible. However, you could add everything else and then add a message for removal. See CONTRIBUTING.md.

It is worth noting that as of June 2022, [the only STL to support `std::format` is clang 14](https://en.cppreference.com/w/cpp/compiler_support/20), which disables it by default because it's incomplete still.

https://github.com/exercism/cpp/blob/main/exercises/concept/strings/.docs/after.md

> > > How would one change all json files to be treated as jsonc? It would be great if this could just be merged in some way to make...

Without your patch, I can get the results you are expecting. I suspect your config is wrong rather than the program itself. I would recommend using a GUI config editor,...

These settings work for me to produce the results you are expecting (running 0.69.0). ```ini sp_before_ptr_star=add sp_before_unnamed_ptr_star=add sp_between_ptr_star=remove sp_after_ptr_star=remove sp_after_ptr_star_func=remove ```

Oh, I see now. I misinterpreted your issue, I thought you were having trouble getting the space before the star in `int *f()`. Apologies. However, this may be the first...

Generally speaking, I would avoid using the standard iostreams, given the immense overhead of formatted stream insertion/extraction operators. You shouldn't have any issues using `printf` like normal, though, which should...