Commit 963e8e82 authored by Davis King's avatar Davis King

Removed default argument from process_batch since it upsets older versions of

gcc and I can imagine scenarios where having it leads to user errors anyway.
parent 1928723a
...@@ -2302,7 +2302,7 @@ namespace dlib ...@@ -2302,7 +2302,7 @@ namespace dlib
} }
template <typename iterable_type, typename ...T> template <typename iterable_type, typename ...T>
std::vector<output_label_type> process_batch (const iterable_type& data, size_t batch_size = 128, T&& ...args) std::vector<output_label_type> process_batch (const iterable_type& data, size_t batch_size, T&& ...args)
{ {
std::vector<output_label_type> results(std::distance(data.begin(), data.end())); std::vector<output_label_type> results(std::distance(data.begin(), data.end()));
auto o = results.begin(); auto o = results.begin();
......
...@@ -855,7 +855,7 @@ namespace dlib ...@@ -855,7 +855,7 @@ namespace dlib
template <typename iterable_type, typename ...T> template <typename iterable_type, typename ...T>
std::vector<output_label_type> process_batch ( std::vector<output_label_type> process_batch (
const iterable_type& data, const iterable_type& data,
size_t batch_size = 128, size_t batch_size,
T&& ...args T&& ...args
); );
/*! /*!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment