summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-05-24 13:12:38 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-05-24 15:40:22 +0100
commit6240967cfc6fe17534db9a64c24113ced3f720be (patch)
treefaf865e66dd50a6cd25f07cd0e79db37567e9512 /comphelper
parent9be6c22ebc225db4d1be7bb0100a2407e9a8eb0c (diff)
callcatcher: update unused code
Change-Id: I1f2a94cdcd4329af68d946ff0a74ddec4ac1c590
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/random.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/comphelper/source/misc/random.cxx b/comphelper/source/misc/random.cxx
index d8e81c5175a9..0c6e83edd20a 100644
--- a/comphelper/source/misc/random.cxx
+++ b/comphelper/source/misc/random.cxx
@@ -59,12 +59,6 @@ struct RandomNumberGenerator
class theRandomNumberGenerator : public rtl::Static<RandomNumberGenerator, theRandomNumberGenerator> {};
-// re-initialises the state of the global random number generator
-void reseed(int i)
-{
- return theRandomNumberGenerator::get().global_rng.seed(i);
-}
-
// uniform ints [a,b] distribution
int uniform_int_distribution(int a, int b)
{