Apply 'make format'

This commit is contained in:
github action 2026-02-21 00:40:13 +00:00
parent 67cc65e6f3
commit 927b6fd3c1
1 changed files with 1 additions and 3 deletions

View File

@ -442,9 +442,7 @@ WDataOutP VL_RANDOM_W(int obits, WDataOutP outwp) VL_MT_SAFE {
return outwp;
}
double VL_RANDOM_RNG_D(VlRNG& rngr) VL_MT_UNSAFE {
return VL_CVT_D_Q(VL_RANDOM_RNG_Q(rngr));
}
double VL_RANDOM_RNG_D(VlRNG& rngr) VL_MT_UNSAFE { return VL_CVT_D_Q(VL_RANDOM_RNG_Q(rngr)); }
WDataOutP VL_RANDOM_RNG_W(VlRNG& rngr, int obits, WDataOutP outwp) VL_MT_UNSAFE {
for (int i = 0; i < VL_WORDS_I(obits); ++i) outwp[i] = rngr.rand64();