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

Removes ostream inclusion from public headers (#364)

close #361
This commit is contained in:
Anarthal (Rubén Pérez)
2025-12-02 11:20:32 +01:00
committed by GitHub
parent 6005ebd04a
commit 02632b31c6
4 changed files with 8 additions and 4 deletions

View File

@@ -8,6 +8,8 @@
#include <boost/assert.hpp>
#include <ostream>
namespace boost::redis::resp3 {
auto to_string(type t) noexcept -> char const*

View File

@@ -9,6 +9,10 @@
#include <boost/redis/resp3/type.hpp>
#include <cstddef>
#include <string>
#include <string_view>
namespace boost::redis::resp3 {
/** @brief A node in the response tree.

View File

@@ -12,7 +12,6 @@
#include <boost/system/error_code.hpp>
#include <array>
#include <cstdint>
#include <optional>
#include <string_view>

View File

@@ -9,9 +9,8 @@
#include <boost/assert.hpp>
#include <ostream>
#include <string>
#include <vector>
#include <cstddef>
#include <iosfwd>
namespace boost::redis::resp3 {