From c47f7dfb3045b7b029859ea1fac80143b996945b Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 6 May 2015 13:46:41 +0200 Subject: [PATCH] sal/log.hxx is what was missing Change-Id: I11aa264391aa4fcd90d171b9a6d93ed8e430b6cc --- comphelper/source/misc/random.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comphelper/source/misc/random.cxx b/comphelper/source/misc/random.cxx index 50f3ce46a840..d8e81c5175a9 100644 --- a/comphelper/source/misc/random.cxx +++ b/comphelper/source/misc/random.cxx @@ -12,7 +12,7 @@ #include #include -#include +#include #include #include #include @@ -51,7 +51,7 @@ struct RandomNumberGenerator } catch (std::runtime_error& e) { - SAL_WARN("comphelper.random", OUString("Using std::random_device failed: ") << e.what()); + SAL_WARN("comphelper.random", "Using std::random_device failed: " << e.what()); global_rng.seed(time(nullptr)); } }