[libcxx-commits] [PATCH] D125329: Replace modulus operations in std::seed_seq::generate with conditional checks.
Laramie Leavitt via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue May 10 16:21:58 PDT 2022
laramiel added inline comments.
================
Comment at: libcxx/benchmarks/random.bench.cpp:20
+static void BM_SeedSeq_Generate(benchmark::State& state) {
+ std::array<std::uint32_t, MAX_BUFFER_LEN> buffer;
+ std::array<std::uint32_t, MAX_SEED_LEN> seeds;
----------------
Does the benchmark need to support C++03? because std::array
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125329/new/
https://reviews.llvm.org/D125329
More information about the libcxx-commits
mailing list