File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,12 @@ struct offset_string {
6565 std::size_t size{};
6666
6767 operator std::string () const { return std::string{data}; }
68- };
6968
70- inline std::ostream& operator <<(std::ostream& os, offset_string const & s) { return os << s.data ; }
69+ friend std::ostream& operator <<(std::ostream& os, offset_string const & s)
70+ {
71+ return os << s.data ;
72+ }
73+ };
7174
7275using offset_node = basic_node<offset_string>;
7376
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ using generic_response = adapter::result<std::vector<resp3::node>>;
3636 * that manages filling of flat_response_value.
3737 */
3838namespace adapter ::detail {
39- template <typename Result>
39+ template <class Result >
4040class general_aggregate ;
4141}
4242
You can’t perform that action at this time.
0 commit comments