-
-
Notifications
You must be signed in to change notification settings - Fork 21.4k
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
Add unit tests for OAHashMap
#90313
Add unit tests for OAHashMap
#90313
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, please squash the commits together so we can merge this. See PR workflow for instructions 🙂
adf7481
to
0c8e1c6
Compare
Thanks! |
expected.push_back(Pair<int, int>(0, 12934)); | ||
expected.push_back(Pair<int, int>(123485, 1238888)); | ||
|
||
int idx = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm getting a build error here because the idx
variable is not used (warning treated as error).
Edit: opened #90496 to fix
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Weird that it wasn't caught on CI. Which compiler and compile option do you use?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm using Clang with dev_mode=yes
.
No description provided.