/*
- * Copyright (c) 2015, Intel Corporation
+ * Copyright (c) 2015-2016, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
#include <set>
#include <type_traits>
#include <utility>
+#include <vector>
namespace ue2 {
}
/**
- * \brief Constructs a vector from a range bounded by the given pair of iterators. */
+ * \brief Constructs a vector from a range bounded by the given pair of
+ * iterators.
+ */
template <typename It>
auto make_vector_from(const std::pair<It, It> &range)
-> std::vector<decltype(*range.first)> {