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
Hi, when I run make command after define _TRACE tag, I will encounter the following error:
../src/smt/old_interval.cpp:295:22: error: operator '||' has no right operand
Source code in src/smt/old_interval.cpp:295 is
#if Z3DEBUG || _TRACE
Compilation will fail when Z3DEBUG or _TRACE is defined.
It seems that this should be changed to
#if defined(Z3DEBUG) || defined(_TRACE)
The text was updated successfully, but these errors were encountered:
545341e
No branches or pull requests
Hi, when I run make command after define _TRACE tag, I will encounter the following error:
Source code in src/smt/old_interval.cpp:295 is
#if Z3DEBUG || _TRACE
Compilation will fail when Z3DEBUG or _TRACE is defined.
It seems that this should be changed to
#if defined(Z3DEBUG) || defined(_TRACE)
The text was updated successfully, but these errors were encountered: