summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoanna Hulboj <joanna.hulboj@isode.com>2017-03-29 12:43:50 (GMT)
committerTobias Markmann <tm@ayena.de>2017-03-31 09:31:21 (GMT)
commit613d66b9847e9e4338a37b22b230d3177872a43c (patch)
treef8412cb315bb273e6a6d6e3e1a63b803a6aad3a9 /Swiften/QA/FileTransferTest/FileTransferTest.cpp
parent7663ca75731c4313dddbcde4d85f10383644a67a (diff)
downloadswift-613d66b9847e9e4338a37b22b230d3177872a43c.zip
swift-613d66b9847e9e4338a37b22b230d3177872a43c.tar.bz2
Use std::random instead of boost::random
Test-Infotmation: Unit tests pass OK. Change-Id: I1b6d3711d97daa86cccbb44aecb1b4025f2fcc8a
Diffstat (limited to 'Swiften/QA/FileTransferTest/FileTransferTest.cpp')
-rw-r--r--Swiften/QA/FileTransferTest/FileTransferTest.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Swiften/QA/FileTransferTest/FileTransferTest.cpp b/Swiften/QA/FileTransferTest/FileTransferTest.cpp
index b627b30..ebdb36a 100644
--- a/Swiften/QA/FileTransferTest/FileTransferTest.cpp
+++ b/Swiften/QA/FileTransferTest/FileTransferTest.cpp
@@ -10,10 +10,11 @@
#include <boost/filesystem.hpp>
#include <boost/numeric/conversion/cast.hpp>
-#include <Swiften/Base/BoostRandomGenerator.h>
+
#include <Swiften/Base/Debug.h>
#include <Swiften/Base/Log.h>
#include <Swiften/Base/sleep.h>
+#include <Swiften/Base/StdRandomGenerator.h>
#include <Swiften/Client/Client.h>
#include <Swiften/Client/ClientXMLTracer.h>
#include <Swiften/Disco/ClientDiscoManager.h>
@@ -37,7 +38,7 @@ static const std::string CLIENT_NODE = "http://swift.im";
static std::shared_ptr<SimpleEventLoop> eventLoop;
static std::shared_ptr<BoostNetworkFactories> networkFactories;
-BoostRandomGenerator randGen;
+StdRandomGenerator randGen;
enum Candidate {
InBandBytestream = 1,