Skip to content

Commit

Permalink
pw_fuzzer: Fix ambiguous reference to ContainerOf
Browse files Browse the repository at this point in the history
Change-Id: I0cc44a9331263bf2f3e4952d4755e6c8c7314686
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/184284
Reviewed-by: Carlos Chinchilla <[email protected]>
Commit-Queue: Aaron Green <[email protected]>
  • Loading branch information
nopsledder authored and CQ Bot Account committed Dec 7, 2023
1 parent 1c48652 commit 9fbb6e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pw_fuzzer/public/pw_fuzzer/fuzztest.h
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,8 @@ struct ArbitraryImpl<Result<T>> {
/// @retval Domain that produces `Vector<T>`s.
template <size_t kMaxSize, int&... ExplicitArgumentBarrier, typename Inner>
auto VectorOf(Inner inner) {
return ContainerOf<Vector<typename Inner::value_type, kMaxSize>>(inner)
return fuzztest::ContainerOf<Vector<typename Inner::value_type, kMaxSize>>(
inner)
.WithMaxSize(kMaxSize);
}

Expand Down

0 comments on commit 9fbb6e3

Please sign in to comment.