BIND 10 master, updated. de2d7124bd8a6bf3f2c0a6e661dc5b6b178765cc [master] remove trailing white space from several lines.
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Mar 8 13:19:30 UTC 2011
The branch, master has been updated
via de2d7124bd8a6bf3f2c0a6e661dc5b6b178765cc (commit)
from 71bcc9a5c413276bd90276c24ee28d59478a138e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit de2d7124bd8a6bf3f2c0a6e661dc5b6b178765cc
Author: Jeremy C. Reed <jreed at ISC.org>
Date: Tue Mar 8 07:19:15 2011 -0600
[master] remove trailing white space from several lines.
-----------------------------------------------------------------------
Summary of changes:
src/lib/asiolink/qid_gen.h | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/asiolink/qid_gen.h b/src/lib/asiolink/qid_gen.h
index ba3c231..a5caa17 100644
--- a/src/lib/asiolink/qid_gen.h
+++ b/src/lib/asiolink/qid_gen.h
@@ -28,7 +28,7 @@
namespace asiolink {
-
+
/// This class generates Qids for outgoing queries
///
/// It is implemented as a singleton; the public way to access it
@@ -47,7 +47,7 @@ public:
///
/// It is recommended that getInstance is used rather than creating
/// separate instances of this class.
- ///
+ ///
/// The constructor automatically seeds the generator with the
/// current time.
QidGenerator();
@@ -61,21 +61,21 @@ public:
///
/// This is automatically called by the constructor
void seed();
-
+
private:
- // "Mersenne Twister: A 623-dimensionally equidistributed
- // uniform pseudo-random number generator", Makoto Matsumoto and
- // Takuji Nishimura, ACM Transactions on Modeling and Computer
- // Simulation: Special Issue on Uniform Random Number Generation,
- // Vol. 8, No. 1, January 1998, pp. 3-30.
+ // "Mersenne Twister: A 623-dimensionally equidistributed
+ // uniform pseudo-random number generator", Makoto Matsumoto and
+ // Takuji Nishimura, ACM Transactions on Modeling and Computer
+ // Simulation: Special Issue on Uniform Random Number Generation,
+ // Vol. 8, No. 1, January 1998, pp. 3-30.
//
// mt19937 is an implementation of one of the pseudo random
// generators described in this paper.
boost::mt19937 generator_;
-
+
// For qid's we want a uniform distribution
boost::uniform_int<> dist_;
-
+
boost::variate_generator<boost::mt19937&, boost::uniform_int<> > vgen_;
};
More information about the bind10-changes
mailing list