summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-05-24 13:12:38 +0100
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2016-02-06 15:58:22 -0500
commitaab9a9661030967d449a26b4cae07d464946b63a (patch)
tree26dc561f5fb4fe3bc3383ac3e1a8740cf302c7ff /comphelper
parent978cc9d1d567ea4607bc0232740fb1da3afbf527 (diff)
callcatcher: update unused code
Change-Id: I1f2a94cdcd4329af68d946ff0a74ddec4ac1c590 (cherry picked from commit 6240967cfc6fe17534db9a64c24113ced3f720be)
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)
{