mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
fix config for C++14
This commit is contained in:
parent
3d89eae1e9
commit
d0d2b677bc
20 changed files with 41 additions and 14 deletions
|
@ -44,6 +44,7 @@ namespace sprout {
|
|||
: min_(0)
|
||||
, max_(sprout::numeric_limits<IntType>::max())
|
||||
{}
|
||||
param_type(param_type const&) = default;
|
||||
explicit SPROUT_CONSTEXPR param_type(IntType min_arg, IntType max_arg = sprout::numeric_limits<IntType>::max())
|
||||
: min_((SPROUT_ASSERT(min_arg <= max_arg), min_arg))
|
||||
, max_(max_arg)
|
||||
|
@ -234,6 +235,7 @@ namespace sprout {
|
|||
: min_(0)
|
||||
, max_(sprout::numeric_limits<IntType>::max())
|
||||
{}
|
||||
uniform_smallint(uniform_smallint const&) = default;
|
||||
explicit SPROUT_CONSTEXPR uniform_smallint(IntType min_arg, IntType max_arg = sprout::numeric_limits<IntType>::max())
|
||||
: min_((SPROUT_ASSERT(min_arg <= max_arg), min_arg))
|
||||
, max_(max_arg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue