raw: noexcept correctness
Change-Id: I1f3cbdc03b1f6827f8d3b3a744eed1a92820ebd4
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/src/stdplus/raw.hpp b/src/stdplus/raw.hpp
index d17bd89..b56fb98 100644
--- a/src/stdplus/raw.hpp
+++ b/src/stdplus/raw.hpp
@@ -47,7 +47,7 @@
* @return True if they are the same, false otherwise
*/
template <typename A, typename B>
-bool equal(const A& a, const B& b)
+bool equal(const A& a, const B& b) noexcept
{
static_assert(std::is_trivially_copyable_v<A>);
static_assert(std::is_trivially_copyable_v<B>);