[compiler-rt] FuzzedDataProvider: make linter happy.

This commit is contained in:
Max Moroz 2020-03-25 00:39:17 -07:00
parent 453eac3f77
commit 1e65209e04
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
// In addition to the comments below, the API is also briefly documented at
// https://github.com/google/fuzzing/blob/master/docs/split-inputs.md#fuzzed-data-provider
class FuzzedDataProvider {
public:
public:
// |data| is an array of length |size| that the FuzzedDataProvider wraps to
// provide more granular access. |data| must outlive the FuzzedDataProvider.
FuzzedDataProvider(const uint8_t *data, size_t size)
@ -79,7 +79,7 @@ public:
// Reports the remaining bytes available for fuzzed input.
size_t remaining_bytes() { return remaining_bytes_; }
private:
private:
FuzzedDataProvider(const FuzzedDataProvider &) = delete;
FuzzedDataProvider &operator=(const FuzzedDataProvider &) = delete;