summaryrefslogtreecommitdiff
path: root/src/tests/sampler_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/sampler_test.cc')
-rwxr-xr-xsrc/tests/sampler_test.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tests/sampler_test.cc b/src/tests/sampler_test.cc
index 2d5824e..fca10ac 100755
--- a/src/tests/sampler_test.cc
+++ b/src/tests/sampler_test.cc
@@ -468,7 +468,6 @@ void OldSampler::Init(uint32_t seed) {
// A cut-down version of the old PickNextSampleRoutine
void OldSampler::PickNextSample(size_t k) {
- // Copied from "base/synchronization.cc" (written by Mike Burrows)
// Make next "random" number
// x^32+x^22+x^2+x^1+1 is a primitive polynomial for random numbers
static const uint32_t kPoly = (1 << 22) | (1 << 2) | (1 << 1) | (1 << 0);