mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 04:42:09 +00:00
Cosmetic changes
This commit is contained in:
committed by
Marcelo Zimbres
parent
bd799aff96
commit
6ff474008f
@@ -65,9 +65,12 @@ struct offset_string {
|
||||
std::size_t size{};
|
||||
|
||||
operator std::string() const { return std::string{data}; }
|
||||
};
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& os, offset_string const& s) { return os << s.data; }
|
||||
friend std::ostream& operator<<(std::ostream& os, offset_string const& s)
|
||||
{
|
||||
return os << s.data;
|
||||
}
|
||||
};
|
||||
|
||||
using offset_node = basic_node<offset_string>;
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ using generic_response = adapter::result<std::vector<resp3::node>>;
|
||||
* that manages filling of flat_response_value.
|
||||
*/
|
||||
namespace adapter::detail {
|
||||
template <typename Result>
|
||||
template <class Result>
|
||||
class general_aggregate;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user