File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
include/boost/redis/adapter Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,15 +64,15 @@ class any_adapter
64
64
/* *
65
65
* @brief Constructor.
66
66
*
67
- * Creates a type-erased response adapter from `response ` by calling
68
- * @ref boost_redis_adapt. `T` must be a valid Redis response type.
67
+ * Creates a type-erased response adapter from `resp ` by calling
68
+ * ` boost_redis_adapt` . `T` must be a valid Redis response type.
69
69
* Any type passed to @ref connection::async_exec qualifies.
70
70
*
71
- * This object stores a reference to `response `, which must be kept alive
71
+ * This object stores a reference to `resp `, which must be kept alive
72
72
* while `*this` is being used.
73
73
*/
74
74
template <class T , class = std::enable_if_t <!std::is_same_v<T, any_adapter>>>
75
- explicit any_adapter (T& response ) : impl_(create_impl(response )) {}
75
+ explicit any_adapter (T& resp ) : impl_(create_impl(resp )) {}
76
76
};
77
77
78
78
}
You can’t perform that action at this time.
0 commit comments