diff options
Diffstat (limited to 'src/tools/fuzzing/random.cpp')
-rw-r--r-- | src/tools/fuzzing/random.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/fuzzing/random.cpp b/src/tools/fuzzing/random.cpp index 3d8297c15..8beda478b 100644 --- a/src/tools/fuzzing/random.cpp +++ b/src/tools/fuzzing/random.cpp @@ -20,8 +20,8 @@ namespace wasm { -Random::Random(std::vector<char>&& bytes, FeatureSet features) - : bytes(std::move(bytes)), features(features) { +Random::Random(std::vector<char>&& bytes_, FeatureSet features) + : bytes(std::move(bytes_)), features(features) { // Ensure there is *some* input to be read. if (bytes.empty()) { bytes.push_back(0); |