Skip to content
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

Use std::vector instead of the custom InplaceVector for LLVMFuzzerMutate. #1470

Closed
wants to merge 0 commits into from

Conversation

copybara-service[bot]
Copy link
Contributor

@copybara-service copybara-service bot commented Dec 2, 2024

Use std::vector instead of the custom InplaceVector for LLVMFuzzerMutate.

The custom InplaceVector has a few issues: Its default constructor (with nullptr backend data) and copy behavior (without copying the underlying data) can be confusing and problematic to the domain implementation; The current container domain does not support dictionary-based mutation on InplaceVector. Using the standard std::vector (with a bit of copying overhead) seems to be a more economical solution than fixing the aforementioned issues.

@copybara-service copybara-service bot force-pushed the cl/702066944 branch 3 times, most recently from 485d7fb to 43f3aef Compare December 9, 2024 18:57
@copybara-service copybara-service bot closed this Dec 9, 2024
@copybara-service copybara-service bot deleted the cl/702066944 branch December 9, 2024 19:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants