]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2357] Wrap comments above 80 char
authorMukund Sivaraman <muks@isc.org>
Thu, 25 Oct 2012 23:57:37 +0000 (05:27 +0530)
committerMukund Sivaraman <muks@isc.org>
Thu, 25 Oct 2012 23:57:37 +0000 (05:27 +0530)
src/lib/util/range_utilities.h

index 42d9c4a39a1aa8ad19697b4a29225b43523c1e43..4d5b0bb916abc1a00c3105e5e6ee6def1a134866 100644 (file)
@@ -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