1. Add explicit template to abs2 (resolves deduction for some arithmetic types)

2. Avoid signed-unsigned conversion in comparison (warning in case Scalar is unsigned)
(grafted from 4086187e49
)
This commit is contained in:
Angelos Mantzaflaris
2016-12-02 11:39:18 +01:00
parent a6b971e291
commit e8a6aa518e
2 changed files with 4 additions and 4 deletions

View File

@@ -94,7 +94,7 @@ struct linspaced_op_impl<Scalar,Packet,/*IsInteger*/true>
m_low(low),
m_multiplier((high-low)/convert_index<Scalar>(num_steps<=1 ? 1 : num_steps-1)),
m_divisor(convert_index<Scalar>(num_steps+high-low)/(high-low+1)),
m_use_divisor((high-low+1)<num_steps)
m_use_divisor((high+1)<(low+num_steps))
{}
template<typename IndexType>