summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-26 00:00:38 +0200
committerCarl Hetherington <cth@carlh.net>2021-06-26 00:00:38 +0200
commite97157fd7fe6767fdc2b1fa32df5b821296907a9 (patch)
tree8a503fdf7e5958bdbb3db8e98fc7d1fd313e63ad /test
parent97b4901435e1ffc59d347cf7478a31fea8fae3a3 (diff)
C++11 cleanup.
Diffstat (limited to 'test')
-rw-r--r--test/combine_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/combine_test.cc b/test/combine_test.cc
index e1512e41..603cca62 100644
--- a/test/combine_test.cc
+++ b/test/combine_test.cc
@@ -97,7 +97,7 @@ check_no_errors (boost::filesystem::path path)
template <class T>
shared_ptr<T>
-pointer_to_id_in_vector (shared_ptr<T> needle, vector<shared_ptr<T> > haystack)
+pointer_to_id_in_vector (shared_ptr<T> needle, vector<shared_ptr<T>> haystack)
{
for (auto i: haystack) {
if (i->id() == needle->id()) {