Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-hughes-tiledb authored and KiterLuc committed Feb 15, 2024
1 parent ea1c850 commit cae5066
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tiledb/common/random/prng.cc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ return_size_type random_seed() {
*/
if constexpr (ret_size == rng_size) {
return rng();
} else if constexpr (ret_size == 2*rng_size) {
} else if constexpr (ret_size == 2 * rng_size) {
return (rng() << rng_size) + rng();
} else {
throw std::runtime_error("Unsupported combination of RNG sizes");
Expand Down Expand Up @@ -102,7 +102,8 @@ PRNG::PRNG()

PRNG::PRNG(RandomSeedT)
: prng_(prng_random())
, mtx_{} {}
, mtx_{} {
}

/* ********************************* */
/* API */
Expand Down

0 comments on commit cae5066

Please sign in to comment.