Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/FixedPointsArduino/commit/d8c2300585072c58c6d7c80efaed10b661070e00?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
4 deletions
src/FixedPoints/SFixedMemberFunctions.h
src/FixedPoints/UFixedMemberFunctions.h
@ -221,14 +221,14 @@ constexpr SFixed<Integer, Fraction> SFixed<Integer, Fraction>::operator -() cons
template < unsigned Integer , unsigned Fraction >
template < unsigned Integer , unsigned Fraction >
SFixed < Integer , Fraction > & SFixed < Integer , Fraction > : : operator + + ( )
SFixed < Integer , Fraction > & SFixed < Integer , Fraction > : : operator + + ( )
{
{
this - > value + = ( 1 < < FractionSize ) ;
this - > value + = ( static_cast < InternalType > ( 1 ) < < FractionSize ) ;
return * this ;
return * this ;
}
}
template < unsigned Integer , unsigned Fraction >
template < unsigned Integer , unsigned Fraction >
SFixed < Integer , Fraction > & SFixed < Integer , Fraction > : : operator - - ( )
SFixed < Integer , Fraction > & SFixed < Integer , Fraction > : : operator - - ( )
{
{
this - > value - = ( 1 < < FractionSize ) ;
this - > value - = ( static_cast < InternalType > ( 1 ) < < FractionSize ) ;
return * this ;
return * this ;
}
}
@ -206,14 +206,14 @@ constexpr UFixed<Integer, Fraction> UFixed<Integer, Fraction>::fromInternal(cons
template < unsigned Integer , unsigned Fraction >
template < unsigned Integer , unsigned Fraction >
UFixed < Integer , Fraction > & UFixed < Integer , Fraction > : : operator + + ( )
UFixed < Integer , Fraction > & UFixed < Integer , Fraction > : : operator + + ( )
{
{
this - > value + = ( 1 < < FractionSize ) ;
this - > value + = ( static_cast < InternalType > ( 1 ) < < FractionSize ) ;
return * this ;
return * this ;
}
}
template < unsigned Integer , unsigned Fraction >
template < unsigned Integer , unsigned Fraction >
UFixed < Integer , Fraction > & UFixed < Integer , Fraction > : : operator - - ( )
UFixed < Integer , Fraction > & UFixed < Integer , Fraction > : : operator - - ( )
{
{
this - > value - = ( 1 < < FractionSize ) ;
this - > value - = ( static_cast < InternalType > ( 1 ) < < FractionSize ) ;
return * this ;
return * this ;
}
}