Skip to content

Commit 1e65209

Browse files
committed
[compiler-rt] FuzzedDataProvider: make linter happy.
1 parent 453eac3 commit 1e65209

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/include/fuzzer/FuzzedDataProvider.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
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
2929
class 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

0 commit comments

Comments
 (0)