diff options
author | pamolodyk <pamolodyk@yandex-team.ru> | 2022-02-10 16:46:27 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:27 +0300 |
commit | 0bc143292e53dd53197b317833ba4e815c8e3037 (patch) | |
tree | 093ecf5847fd739d6e4284e6038640d64717d797 | |
parent | 7fc7764db59108cf26ab84c5a5d87a4a28d23c17 (diff) | |
download | ydb-0bc143292e53dd53197b317833ba4e815c8e3037.tar.gz |
Restoring authorship annotation for <pamolodyk@yandex-team.ru>. Commit 1 of 2.
-rw-r--r-- | contrib/restricted/boost/boost/random/linear_congruential.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/restricted/boost/boost/random/linear_congruential.hpp b/contrib/restricted/boost/boost/random/linear_congruential.hpp index 1522a1b242..ecf3277e78 100644 --- a/contrib/restricted/boost/boost/random/linear_congruential.hpp +++ b/contrib/restricted/boost/boost/random/linear_congruential.hpp @@ -124,9 +124,9 @@ public: * distinct seeds in the range [1,m) will leave the generator in distinct * states. If c is not zero, the range is [0,m). */ - - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wtautological-overlap-compare" + + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wtautological-overlap-compare" BOOST_RANDOM_DETAIL_ARITHMETIC_SEED(linear_congruential_engine, IntType, x0_) { // Work around a msvc 12/14 optimizer bug, which causes @@ -150,7 +150,7 @@ public: BOOST_ASSERT(_x >= (min)()); BOOST_ASSERT(_x <= (max)()); } - #pragma clang diagnostic pop + #pragma clang diagnostic pop /** * Seeds a @c linear_congruential_engine using values from a SeedSeq. |