File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compiler-rt/include/fuzzer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2727// In addition to the comments below, the API is also briefly documented at
2828// https://github.com/google/fuzzing/blob/master/docs/split-inputs.md#fuzzed-data-provider
2929class FuzzedDataProvider {
30- public:
30+ public:
3131 // |data| is an array of length |size| that the FuzzedDataProvider wraps to
3232 // provide more granular access. |data| must outlive the FuzzedDataProvider.
3333 FuzzedDataProvider (const uint8_t *data, size_t size)
@@ -79,7 +79,7 @@ class FuzzedDataProvider {
7979 // Reports the remaining bytes available for fuzzed input.
8080 size_t remaining_bytes () { return remaining_bytes_; }
8181
82- private:
82+ private:
8383 FuzzedDataProvider (const FuzzedDataProvider &) = delete;
8484 FuzzedDataProvider &operator =(const FuzzedDataProvider &) = delete;
8585
You can’t perform that action at this time.
0 commit comments