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 | 81f9f6d9cc09b63d4a2427eff8d15d120aeadc41 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib | |
parent | 0bc143292e53dd53197b317833ba4e815c8e3037 (diff) | |
download | ydb-81f9f6d9cc09b63d4a2427eff8d15d120aeadc41.tar.gz |
Restoring authorship annotation for <pamolodyk@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib')
-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 ecf3277e78..1522a1b242 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. |