-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
std::vector
instead of the custom InplaceVector
for LLVMFuzze…
…rMutate. 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. PiperOrigin-RevId: 704349332
- Loading branch information
1 parent
117570f
commit 8d81145
Showing
1 changed file
with
7 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters