Skip to content

Commit 451c8ad

Browse files
committed
Fix of #30
1 parent 62c3186 commit 451c8ad

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

include/redis-cpp/detail/config.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,4 @@
1414
#error "RedisCpp. Requires C++ 17 or higher."
1515
#endif
1616

17-
#ifdef REDISCPP_HEADER_ONLY
18-
# define REDISCPP_INLINE inline
19-
#else
20-
# define REDISCPP_INLINE
21-
#endif // !REDISCPP_HEADER_ONLY
22-
2317
#endif // !REDISCPP_DETAIL_CONFIG_H_

include/redis-cpp/resp/deserialization.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ inline namespace resp
3030
namespace deserialization
3131
{
3232
[[nodiscard]]
33-
REDISCPP_INLINE
34-
auto get_mark(std::istream &stream)
33+
inline auto get_mark(std::istream &stream)
3534
{
3635
switch (stream.get())
3736
{

0 commit comments

Comments
 (0)