From ed1c6dd21167f36c0ca9b5a7a21a299eb957fc7c Mon Sep 17 00:00:00 2001 From: rexy712 Date: Sun, 5 Apr 2020 18:33:32 -0700 Subject: [PATCH] Fix typo in binary --- rexy/include/binary.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rexy/include/binary.hpp b/rexy/include/binary.hpp index e4fad7b..f1bcf9e 100644 --- a/rexy/include/binary.hpp +++ b/rexy/include/binary.hpp @@ -121,7 +121,7 @@ namespace rexy{ return false; memcpy(STOP_STRICT_ALIAS_WARNING(tmp).m_data, m_data, m_size); std::swap(m_data, STOP_STRICT_ALIAS_WARNING(tmp).m_data); - m_cap = STOP_STRICT_ALIAS_WARING(tmp).m_cap; + m_cap = STOP_STRICT_ALIAS_WARNING(tmp).m_cap; return true; } void append(const char* data, size_t len){