From: Mukund Sivaraman Date: Thu, 25 Oct 2012 23:57:37 +0000 (+0530) Subject: [2357] Wrap comments above 80 char X-Git-Tag: trac2487_base~18^2~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=195617a1fd88af3bfbb397263cd67a148d0e7d67;p=thirdparty%2Fkea.git [2357] Wrap comments above 80 char --- diff --git a/src/lib/util/range_utilities.h b/src/lib/util/range_utilities.h index 42d9c4a39a..4d5b0bb916 100644 --- a/src/lib/util/range_utilities.h +++ b/src/lib/util/range_utilities.h @@ -41,16 +41,17 @@ isRangeZero(Iterator begin, Iterator end) { /// @brief Fill in specified range with a random data. /// -/// Make sure that random number generator is initialized properly. Otherwise you -/// will get a the same pseudo-random sequence after every start of your process. -/// Calling srand() is enough. This method uses default rand(), which is usually -/// a LCG pseudo-random number generator, so it is not suitable for security -/// purposes. Please get a decent PRNG implementation, like mersene twister, if -/// you are doing anything related with security. +/// Make sure that random number generator is initialized +/// properly. Otherwise you will get a the same pseudo-random sequence +/// after every start of your process. Calling srand() is enough. This +/// method uses default rand(), which is usually a LCG pseudo-random +/// number generator, so it is not suitable for security +/// purposes. Please get a decent PRNG implementation, like mersene +/// twister, if you are doing anything related with security. /// -/// PRNG initialization is left out of this function on purpose. It may be -/// initialized to specific value on purpose, e.g. to repeat exactly the same -/// sequence in a test. +/// PRNG initialization is left out of this function on purpose. It may +/// be initialized to specific value on purpose, e.g. to repeat exactly +/// the same sequence in a test. /// /// @param begin /// @param end