mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix defaulted default constructor
This commit is contained in:
parent
5aacc92a14
commit
7640eca894
82 changed files with 139 additions and 120 deletions
|
@ -26,7 +26,7 @@ namespace sprout {
|
|||
value_type low_;
|
||||
value_type up_;
|
||||
public:
|
||||
clip_holder() = default;
|
||||
SPROUT_CONSTEXPR clip_holder() SPROUT_DEFAULTED_DEFAULT_CONSTRUCTOR_DECL
|
||||
clip_holder(clip_holder const&) = default;
|
||||
explicit SPROUT_CONSTEXPR clip_holder(value_type const& low = -1, value_type const& up = 1)
|
||||
: low_(low), up_(up)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue