-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
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
bloom_test: compilation failures with GCC #136
Comments
isaac-io
added a commit
that referenced
this issue
Aug 24, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
isaac-io
added a commit
that referenced
this issue
Aug 24, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
isaac-io
added a commit
that referenced
this issue
Oct 19, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
isaac-io
added a commit
that referenced
this issue
Oct 19, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
isaac-io
added a commit
that referenced
this issue
Oct 19, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
isaac-io
added a commit
that referenced
this issue
Oct 19, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
isaac-io
added a commit
that referenced
this issue
Oct 19, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
Yuval-Ariel
pushed a commit
that referenced
this issue
Nov 23, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
Yuval-Ariel
pushed a commit
that referenced
this issue
Nov 25, 2022
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
Yuval-Ariel
pushed a commit
that referenced
this issue
Apr 30, 2023
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
udi-speedb
pushed a commit
that referenced
this issue
Oct 31, 2023
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
udi-speedb
pushed a commit
that referenced
this issue
Dec 3, 2023
When compiling bloom_test with GCC 12 it complains about using uninitialised variables. The error is technically wrong, since only the address is taken, but since this is a test and there's no performance penalty, initialise the member to get rid of the error.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Compiling
bloom_test
with GCC 12 results in the following error:To Reproduce
Run
make bloom_test
Expected behavior
Compilation succeeds.
Additional context
N/A
The text was updated successfully, but these errors were encountered: