From 927b6fd3c13b286b681b8df58fcb7196271ea0a9 Mon Sep 17 00:00:00 2001 From: github action Date: Sat, 21 Feb 2026 00:40:13 +0000 Subject: [PATCH] Apply 'make format' --- include/verilated.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/verilated.cpp b/include/verilated.cpp index fbda7116f..9bba77cd9 100644 --- a/include/verilated.cpp +++ b/include/verilated.cpp @@ -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();