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
Is there a way to use this properly together with google log? I get warnings like 'CHECK' macro redefined ,'CHECK_EQ' macro redefined .
'CHECK' macro redefined ,'CHECK_EQ' macro redefined
And error like:
' error: no member named 'DOCTEST_INFO' in namespace 'google' google::FlushLogFiles(google::INFO); ~~~~~~~~^
when I include the doctest header.
#include "doctest.h"
and use some google log macro.
The text was updated successfully, but these errors were encountered:
Oh. I found the option #define DOCTEST_CONFIG_NO_SHORT_MACRO_NAMES , thanks!
#define DOCTEST_CONFIG_NO_SHORT_MACRO_NAMES
Sorry, something went wrong.
No branches or pull requests
Description
Is there a way to use this properly together with google log? I get warnings like
'CHECK' macro redefined ,'CHECK_EQ' macro redefined
.And error like:
when I include the doctest header.
Steps to reproduce
and use some google log macro.
Extra information
The text was updated successfully, but these errors were encountered: