mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix trivial constructor declaration
This commit is contained in:
parent
1bce2b4a5b
commit
478c476611
16 changed files with 89 additions and 69 deletions
|
@ -62,7 +62,7 @@ namespace sprout {
|
|||
SPROUT_CONSTEXPR uniform_color()
|
||||
: color_()
|
||||
{}
|
||||
SPROUT_CONSTEXPR uniform_color(uniform_color const&) = default;
|
||||
uniform_color(uniform_color const&) = default;
|
||||
explicit SPROUT_CONSTEXPR uniform_color(color_type const& color)
|
||||
: color_(color)
|
||||
{}
|
||||
|
|
|
@ -175,7 +175,7 @@ namespace sprout {
|
|||
SPROUT_CONSTEXPR whitted_style()
|
||||
: infinity_color_()
|
||||
{}
|
||||
SPROUT_CONSTEXPR whitted_style(whitted_style const&) = default;
|
||||
whitted_style(whitted_style const&) = default;
|
||||
explicit SPROUT_CONSTEXPR whitted_style(infinity_color_type const& infinity_color)
|
||||
: infinity_color_(infinity_color)
|
||||
{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue