We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying some of the examples and saw the following happen:
Trying: 0 15 10 L * ? terminate called after throwing an instance of 'cron::bad_cronexpr' what(): stoul Aborted (core dumped)
Program code (nothing crazy):
#include "croncpp.h" #include <chrono> #include <iostream> #include <string> int main(int argc, char** argv) { std::string c = argv[1]; std::cout << "Trying: "<< c << "\n"; auto cexpr = cron::make_cron(c); auto now = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now()); auto next = cron::cron_next(cexpr, now); std::cout << next << "\n"; return 0; }
I also tried with the various oracle and quartz traits, but didn't seem to work.
Perhaps remove from the README.md if this format doesn't work?
README.md
The text was updated successfully, but these errors were encountered:
You are correct, L and W are not currently supported and the readme.md is misleading about this.
L
W
readme.md
Sorry, something went wrong.
mariusbancila
No branches or pull requests
I was trying some of the examples and saw the following happen:
Program code (nothing crazy):
I also tried with the various oracle and quartz traits, but didn't seem to work.
Perhaps remove from the
README.md
if this format doesn't work?The text was updated successfully, but these errors were encountered: