Jakub Zakrzewski

Results 34 comments of Jakub Zakrzewski

I'd gladly just ditch the whole integer part. I have given those things a name for a reason and the integer values are just exposing implementation details that I bet...

There is a long-standing issue for all IntelliJ-based IDEs. They all tend to steal focus on startup.

Sorry for the negativity, but I'm not convinced that the project should document something it does not control. Such things tend to get outdated pretty easily.

I don't understand what you're saying. This repository can be cloned normally, like any other GitHub-hosted one (or downloaded as a zip). Making it a template only makes it convenient...

Static libraries do not carry the link information with them, so if you're going to search for a static library like this, you have to know what other libraries must...

I'll try to make some time either this evening or tomorrow. I'd really love to contribute more than occasional comment here and there...

Damn, still did not get to it. :( I'm doing something wrong with my time management...

Originally I used it as a submodule (via FetchContent), but I have just reproduced it stand-alone. This is the command line: ``` cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCPP_STANDARD=20 -DBUILD_ONLY=s3 -DENABLE_TESTING=OFF -DBUILD_TESTING=OFF...

Hmmm - why does `ZLIB_CHUNK` have to be a `size_t` anyway? Maybe it should just be `uInt`? Maybe even initialized like: `static const auto ZLIB_CHUNK=std::numeric_limits::max();`?