mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
move textspr/sprout/* -> libs/<libname>/test/*
fix binomial_distribution
This commit is contained in:
parent
237ec76266
commit
0ceabb5b9b
107 changed files with 1228 additions and 840 deletions
|
@ -264,7 +264,7 @@ namespace std {
|
|||
// tuple_size
|
||||
//
|
||||
template<>
|
||||
class tuple_size<sprout::uuids::uuid> {
|
||||
struct tuple_size<sprout::uuids::uuid> {
|
||||
public:
|
||||
typedef std::integral_constant<std::size_t, 16> type;
|
||||
SPROUT_STATIC_CONSTEXPR std::size_t value = type::value;
|
||||
|
@ -274,7 +274,7 @@ namespace std {
|
|||
// tuple_element
|
||||
//
|
||||
template<std::size_t I>
|
||||
class tuple_element<I, sprout::uuids::uuid> {
|
||||
struct tuple_element<I, sprout::uuids::uuid> {
|
||||
public:
|
||||
static_assert(I < 16, "tuple_element<>: index out of range");
|
||||
typedef sprout::uuids::uuid::value_type type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue