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
Compiling the source code from this repository we get a lot of warnings like:
../I2util/errlog.h:105:33: warning: macro "__DATE__" might prevent reproducible builds [-Wdate-time] #define I2ErrLog I2ErrLocation_(__FILE__, __DATE__, __LINE__); \
We could either just remove the usage of the __DATE__ macro or, better, replace it with the i2util version number. See the function definition.
__DATE__
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Compiling the source code from this repository we get a lot of warnings like:
We could either just remove the usage of the
__DATE__
macro or, better, replace it with the i2util version number. See the function definition.The text was updated successfully, but these errors were encountered: