Skip to content

Commit 8febbfd

Browse files
committed
Fixed noexcept.
1 parent 33a8d8c commit 8febbfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/msgpack/v1/pack.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ class packer {
631631

632632
#if !defined(MSGPACK_USE_CPP03)
633633
template <typename Ret, typename Cls, typename SizeType>
634-
void append_buffer(Ret (Cls::*)(const char*, SizeType) noexcept(true), const char* buf, size_t len)
634+
void append_buffer(Ret (Cls::*)(const char*, SizeType) noexcept, const char* buf, size_t len) noexcept
635635
{
636636
m_stream.write(buf, static_cast<SizeType>(len));
637637
}

0 commit comments

Comments
 (0)