diff options
Diffstat (limited to 'binparse/output.hpp')
| -rw-r--r-- | binparse/output.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binparse/output.hpp b/binparse/output.hpp index c5db2da..3919bef 100644 --- a/binparse/output.hpp +++ b/binparse/output.hpp @@ -42,6 +42,10 @@ std::ostream& operator<<(std::ostream& os, std::vector<uint8_t> vec); template <typename T, typename std::enable_if<boost::fusion::traits::is_sequence<T>::value>::type* = nullptr> std::ostream& operator<<(std::ostream&, T const&); + +template <typename ValueType> +std::ostream& operator<<(std::ostream& os, std::vector<ValueType> const& vec); + template <typename Key, typename Value> std::ostream& operator<<(std::ostream& os, std::map<Key, Value> const& map) { try { |
