tests: fix build with clang 3.8
Change-Id: Idcb5db7b3c0dc645aa569b70b4ea8df9858b7cd4
Refs: #3498
diff --git a/tests/daemon/fw/topology-tester.cpp b/tests/daemon/fw/topology-tester.cpp
index f1e54bb..1a3e9e7 100644
--- a/tests/daemon/fw/topology-tester.cpp
+++ b/tests/daemon/fw/topology-tester.cpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
- * Copyright (c) 2014-2015, Regents of the University of California,
+ * Copyright (c) 2014-2016, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
@@ -111,7 +111,7 @@
TopologyTester::addForwarder(const std::string& label)
{
size_t i = m_forwarders.size();
- m_forwarders.push_back(std::move(make_unique<Forwarder>()));
+ m_forwarders.push_back(make_unique<Forwarder>());
m_forwarderLabels.push_back(label);
BOOST_ASSERT(m_forwarders.size() == m_forwarderLabels.size());
return i;