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
ran into an issue with the add_flag not handling atomic properly. It seems to trigger a deleted assignment operator in atomic.
I made a workaround in the application for now but I will be looking into this soon.
The text was updated successfully, but these errors were encountered:
The workaround was to use a add_flag_function
group->add_flag_function("--flush", [this](int64_t val){ if (val > 0) { forceLoggingFlush = true; }},
forceLoggingFlush is an atomic_bool member
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
ran into an issue with the add_flag not handling atomic properly.
It seems to trigger a deleted assignment operator in atomic.
I made a workaround in the application for now but I will be looking into this soon.
The text was updated successfully, but these errors were encountered: