Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/FixedPointsArduino/commit/ff3308fd96ecbcfb093dbbb77ce326bbc4401674?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
0 additions and
14 deletions
src/FixedPoints/SFixed.h
src/FixedPoints/SFixedMemberFunctions.h
src/FixedPoints/UFixed.h
src/FixedPoints/UFixedMemberFunctions.h
@ -64,7 +64,6 @@ public:
using Base : : Base ;
constexpr SFixed ( void ) ;
constexpr SFixed ( const IntegerType & integer ) ;
constexpr SFixed ( const IntegerType & integer , const FractionType & fraction ) ;
constexpr InternalType getInternal ( void ) const ;
@ -24,12 +24,6 @@ constexpr SFixed<Integer, Fraction>::SFixed(void)
{
}
template < unsigned Integer , unsigned Fraction >
constexpr SFixed < Integer , Fraction > : : SFixed ( const IntegerType & integer )
: Base ( RawType ( static_cast < InternalType > ( integer ) < < FractionSize ) )
{
}
template < unsigned Integer , unsigned Fraction >
constexpr SFixed < Integer , Fraction > : : SFixed ( const IntegerType & integer , const FractionType & fraction )
: Base ( RawType ( ( static_cast < InternalType > ( integer ) < < FractionSize ) | fraction ) )
@ -64,7 +64,6 @@ public:
using Base : : Base ;
constexpr UFixed ( void ) ;
constexpr UFixed ( const IntegerType & integer ) ;
constexpr UFixed ( const IntegerType & integer , const FractionType & fraction ) ;
constexpr InternalType getInternal ( void ) const ;
@ -24,12 +24,6 @@ constexpr UFixed<Integer, Fraction>::UFixed(void)
{
}
template < unsigned Integer , unsigned Fraction >
constexpr UFixed < Integer , Fraction > : : UFixed ( const IntegerType & integer )
: Base ( RawType ( static_cast < InternalType > ( integer ) < < FractionSize ) )
{
}
template < unsigned Integer , unsigned Fraction >
constexpr UFixed < Integer , Fraction > : : UFixed ( const IntegerType & integer , const FractionType & fraction )
: Base ( RawType ( ( static_cast < InternalType > ( integer ) < < FractionSize ) | fraction ) )