From 587dd7cb907fbf38a1300d0768613f5fd6b0d7d0 Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Thu, 8 Sep 2016 12:49:48 +0200 Subject: [PATCH] Fix typo --- tstl/include/expected.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tstl/include/expected.hpp b/tstl/include/expected.hpp index 592a0080..ba92eb5b 100644 --- a/tstl/include/expected.hpp +++ b/tstl/include/expected.hpp @@ -561,7 +561,7 @@ inline expected make_expected(){ // Make sure the size is maintained reasonable static_assert(sizeof(expected) == 2 * sizeof(size_t), "expected should not have overhead"); -static_assert(sizeof(expected) == 2 * sizeof(size_t), "expected should not have overhead"); +static_assert(sizeof(expected) == 2 * sizeof(size_t), "expected should not have overhead"); } //end of namespace std