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 27
27
// In addition to the comments below, the API is also briefly documented at
28
28
// https://github.com/google/fuzzing/blob/master/docs/split-inputs.md#fuzzed-data-provider
29
29
class FuzzedDataProvider {
30
- public:
30
+ public:
31
31
// |data| is an array of length |size| that the FuzzedDataProvider wraps to
32
32
// provide more granular access. |data| must outlive the FuzzedDataProvider.
33
33
FuzzedDataProvider (const uint8_t *data, size_t size)
@@ -79,7 +79,7 @@ class FuzzedDataProvider {
79
79
// Reports the remaining bytes available for fuzzed input.
80
80
size_t remaining_bytes () { return remaining_bytes_; }
81
81
82
- private:
82
+ private:
83
83
FuzzedDataProvider (const FuzzedDataProvider &) = delete;
84
84
FuzzedDataProvider &operator =(const FuzzedDataProvider &) = delete;
85
85
You can’t perform that action at this time.
0 commit comments