summaryrefslogtreecommitdiff
path: root/include/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 /include/comphelper
parent9be6c22ebc225db4d1be7bb0100a2407e9a8eb0c (diff)
callcatcher: update unused code
Change-Id: I1f2a94cdcd4329af68d946ff0a74ddec4ac1c590
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/random.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/comphelper/random.hxx b/include/comphelper/random.hxx
index ca0d3dd2430b..080b5d246891 100644
--- a/include/comphelper/random.hxx
+++ b/include/comphelper/random.hxx
@@ -18,10 +18,6 @@ namespace comphelper
namespace rng
{
-/// reset initial seed, typically you don't call this as the initial seed is taken from the
-// time on the first use of the distribution functions
-COMPHELPER_DLLPUBLIC void reseed(int i);
-
// note that uniform_int_distribution is inclusive of b, i.e. [a,b] while
// uniform_real_distribution is exclusive of b, i.e. [a,b), std::nextafter may be your friend there