mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-25 00:43:44 +00:00
Merge pull request #48 from kariya-mitsuru/std-tuple_size-doc
[array.std::tuple_size] Fix examples compilation error.
This commit is contained in:
commit
350e883d35
1 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@ Examples
|
||||||
using namespace sprout;
|
using namespace sprout;
|
||||||
|
|
||||||
using type = array<int, 10>;
|
using type = array<int, 10>;
|
||||||
SPROUT_STATIC_CONSTEXPR auto size = std::tuple_size<type>::value;
|
SPROUT_STATIC_CONSTEXPR auto n = std::tuple_size<type>::value;
|
||||||
static_assert(size == 10, "tuple size of array is 10.");
|
static_assert(n == 10, "tuple size of array is 10.");
|
||||||
|
|
||||||
Header
|
Header
|
||||||
========================================
|
========================================
|
||||||
|
|
Loading…
Reference in a new issue