summaryrefslogtreecommitdiffstats
path: root/util/random/lcg_engine.h
diff options
context:
space:
mode:
authorbulatman <[email protected]>2023-05-04 10:28:45 +0300
committerbulatman <[email protected]>2023-05-04 10:28:45 +0300
commit6bccf8a6c51dfc4e563317584ee71ea0637c452a (patch)
treefd2db9ebc1482d68aacfd1353bfcb8d6243f56a4 /util/random/lcg_engine.h
parent5a38c255b846d4bdaa221ca12c63d43f98033416 (diff)
Remove using of extra semicolons in util
Diffstat (limited to 'util/random/lcg_engine.h')
-rw-r--r--util/random/lcg_engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/random/lcg_engine.h b/util/random/lcg_engine.h
index 08cc93c8457..4347b1a5ed8 100644
--- a/util/random/lcg_engine.h
+++ b/util/random/lcg_engine.h
@@ -9,7 +9,7 @@
namespace NPrivate {
template <typename T>
T LcgAdvance(T seed, T lcgBase, T lcgAddend, T delta) noexcept;
-};
+}
template <typename T, T A, T C>
struct TFastLcgIterator {