Unverified Commit 4983fecd authored by Paul Fultz II's avatar Paul Fultz II Committed by GitHub
Browse files

Fix bug when using --continue in the tests (#884)

* Fix bug when using --continue in the tests

* Formatting
parent 0b04fc80
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
#include <functional> #include <functional>
#include <iostream> #include <iostream>
#include <sstream> #include <sstream>
#include <type_traits>
#include <unordered_map> #include <unordered_map>
#include <vector> #include <vector>
...@@ -101,7 +102,9 @@ inline Stream& operator<<(Stream& s, std::nullptr_t) ...@@ -101,7 +102,9 @@ inline Stream& operator<<(Stream& s, std::nullptr_t)
return s; return s;
} }
template <class Stream, class Range> template <class Stream,
class Range,
class = typename std::enable_if<not std::is_convertible<Range, std::string>{}>::type>
inline auto operator<<(Stream& s, const Range& v) -> decltype(stream_range(s, v.begin(), v.end())) inline auto operator<<(Stream& s, const Range& v) -> decltype(stream_range(s, v.begin(), v.end()))
{ {
s << "{ "; s << "{ ";
......
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