Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/FixedPointsArduino/commit/109d1d21fdc425213e54993a75123afb6549ba4d?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
40 additions and
0 deletions
src/FixedPoints/SFixedFreeFunctions.h
src/FixedPoints/UFixedFreeFunctions.h
@ -28,6 +28,26 @@ constexpr SFixed<Integer * 2, Fraction * 2> multiply(const SFixed<Integer, Fract
return ResultType : : fromInternal ( static_cast < InternalType > ( static_cast < InternalType > ( left . getInternal ( ) ) * static_cast < InternalType > ( right . getInternal ( ) ) ) ) ;
}
//
// Postincrement and Postdecrement
//
template < unsigned Integer , unsigned Fraction >
SFixed < Integer , Fraction > operator + + ( SFixed < Integer , Fraction > & value , int )
{
const auto oldValue = value ;
+ + value ;
return oldValue ;
}
template < unsigned Integer , unsigned Fraction >
SFixed < Integer , Fraction > operator - - ( SFixed < Integer , Fraction > & value , int )
{
const auto oldValue = value ;
- - value ;
return oldValue ;
}
//
// Basic Logic Operations
//
@ -28,6 +28,26 @@ constexpr UFixed<Integer * 2, Fraction * 2> multiply(const UFixed<Integer, Fract
return ResultType : : fromInternal ( static_cast < InternalType > ( static_cast < InternalType > ( left . getInternal ( ) ) * static_cast < InternalType > ( right . getInternal ( ) ) ) ) ;
}
//
// Postincrement and Postdecrement
//
template < unsigned Integer , unsigned Fraction >
UFixed < Integer , Fraction > operator + + ( UFixed < Integer , Fraction > & value , int )
{
const auto oldValue = value ;
+ + value ;
return oldValue ;
}
template < unsigned Integer , unsigned Fraction >
UFixed < Integer , Fraction > operator - - ( UFixed < Integer , Fraction > & value , int )
{
const auto oldValue = value ;
- - value ;
return oldValue ;
}
//
// Basic Logic Operations
//