-
Notifications
You must be signed in to change notification settings - Fork 293
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
Introduce eofparse and eofparsefuzz #568
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #568 +/- ##
==========================================
- Coverage 97.41% 96.97% -0.44%
==========================================
Files 67 67
Lines 6183 6224 +41
==========================================
+ Hits 6023 6036 +13
- Misses 160 188 +28
Flags with carried forward coverage won't be shown. Click here to find out more.
|
template <typename BaseIterator> | ||
struct skip_nonalnum_iterator : evmc::filter_iterator<BaseIterator, isalnum> | ||
{ | ||
using evmc::filter_iterator<BaseIterator, isalnum>::filter_iterator; |
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.
surprised that such thing is in public evmc API
Pulled this out from #563. Could be merged on its own.