mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-12-23 21:25:49 +00:00
fix extra ';'
This commit is contained in:
parent
42546e8b97
commit
e8f7d3c610
2 changed files with 2 additions and 2 deletions
|
@ -184,7 +184,7 @@ namespace sprout {
|
||||||
: direction_value_(direction_value)
|
: direction_value_(direction_value)
|
||||||
, val_(val)
|
, val_(val)
|
||||||
, mat_(mat)
|
, mat_(mat)
|
||||||
{};
|
{}
|
||||||
template<typename Ray>
|
template<typename Ray>
|
||||||
SPROUT_CONSTEXPR typename intersection<Ray>::type intersect(Ray const& ray) const {
|
SPROUT_CONSTEXPR typename intersection<Ray>::type intersect(Ray const& ray) const {
|
||||||
return intersect_1(
|
return intersect_1(
|
||||||
|
|
|
@ -251,7 +251,7 @@ namespace sprout {
|
||||||
: pos_(pos)
|
: pos_(pos)
|
||||||
, rad_(rad)
|
, rad_(rad)
|
||||||
, mat_(mat)
|
, mat_(mat)
|
||||||
{};
|
{}
|
||||||
template<typename Ray>
|
template<typename Ray>
|
||||||
SPROUT_CONSTEXPR typename intersection<Ray>::type intersect(Ray const& ray) const {
|
SPROUT_CONSTEXPR typename intersection<Ray>::type intersect(Ray const& ray) const {
|
||||||
return intersect_1(
|
return intersect_1(
|
||||||
|
|
Loading…
Reference in a new issue