summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-05 14:38:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-06 09:17:13 +0000
commit7cc8e0c302a5e7b669778337576a37f34754478c (patch)
tree8efc5297a151f19dbc7af53eb69843f551b97945 /include/comphelper
parent3976739f2378391fa09379c48844daf0e2790f5b (diff)
boost::math::nextafter->std::nextafter
Change-Id: I868b3fcf367e61c40e77e64bcc153b2a2feefa0b
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/random.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/random.hxx b/include/comphelper/random.hxx
index 3b1fabb3f7aa..ca0d3dd2430b 100644
--- a/include/comphelper/random.hxx
+++ b/include/comphelper/random.hxx
@@ -23,7 +23,7 @@ namespace rng
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/boost]::nextafter may be your friend there
+// uniform_real_distribution is exclusive of b, i.e. [a,b), std::nextafter may be your friend there
/// uniform distribution in [a,b)
COMPHELPER_DLLPUBLIC double uniform_real_distribution(double a = 0.0, double b = 1.0);