2
0
mirror of https://github.com/boostorg/redis.git synced 2026-01-19 04:42:09 +00:00

Cosmetic changes

This commit is contained in:
Nikolai Vladimirov
2025-08-18 19:57:51 +00:00
committed by Marcelo Zimbres
parent bd799aff96
commit 6ff474008f
2 changed files with 6 additions and 3 deletions

View File

@@ -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>;

View File

@@ -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;
}