Merge pull request #187 from michael-loki/fix_staging

Fix C++11 build
pull/188/head
Jeff 6 years ago committed by GitHub
commit 0197882878
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 >;

Loading…
Cancel
Save