Daniele Pallastrelli

Results 53 comments of Daniele Pallastrelli

You're correct: currently, all tests are compiled regardless of the value of the `CLI_UseBoostAsio `option. This was intentional to ensure that all parts of the library (both with boost and...

For the tests to build, you need to provide both libraries: `-DASIO_INCLUDEDIR=${ASIO_PATH} -DBOOST_ROOT=${BOOST_PATH}` this does not work: `-DASIO_INCLUDEDIR=${BOOST_PATH} -DBOOST_ROOT=${BOOST_PATH}`

You can't remove the break: when there are less than max_files_ files, the while loop can't exit. The solution I was proposing does not take a long time of execution.

I agree. I'm pretty busy right now, so I'm not sure I'll be able to submit a PR anytime soon.

@andy-byers this could be a partial solution, but you should have the const `allowed_missing` big enough to take into account the case when one starts the application a few months...

Not yet, but it's a good feature to have! Thank you for the idea.

This library is designed for interactive shell use, not parsing command-line arguments. That's why it does not support "flags" in that style. With the example you provide, you can use...

No. Unfortunately, it's not supported yet. If someone wants to submit a PR, it's welcome.

@dev-plvlml, first of all, thank you very much for your contribution. You're right: in the programming environment, "CLI" is used mainly for parsing arguments while REPL is more appropriate. I...