From 771af4afed5fdcb83918d0432a63da9ac2533d34 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 29 Dec 2018 13:08:24 +0000 Subject: [PATCH] Fix C++11 build --- llarp/link/utp_internal.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/link/utp_internal.hpp b/llarp/link/utp_internal.hpp index f7edde960..79160ec6d 100644 --- a/llarp/link/utp_internal.hpp +++ b/llarp/link/utp_internal.hpp @@ -33,7 +33,7 @@ namespace llarp constexpr size_t FragmentBufferSize = FragmentOverheadSize + FragmentBodySize; - static_assert(FragmentBufferSize == 1120); + static_assert(FragmentBufferSize == 1120, "Buffer size invalid"); /// buffer for a single utp fragment using FragmentBuffer = llarp::AlignedBuffer< FragmentBufferSize >;