Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/FixedPointsArduino/commit/05f8ae0c8368f167446d68c9c4912122aa995696?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
0 additions and
24 deletions
src/FixedPoints/Details.h
@ -47,30 +47,6 @@ namespace FIXED_POINTS_DETAILS
constexpr static const auto Value = sizeof ( T ) * CHAR_BIT ;
} ;
template < typename T , typename U = T >
constexpr auto Max ( const T & left , const U & right ) noexcept - > decltype ( ( left > right ) ? left : right )
{
return ( left > right ) ? left : right ;
}
template < typename T , T Left , T Right >
constexpr auto Max ( void ) noexcept - > decltype ( ( Left > Right ) ? Left : Right )
{
return ( Left > Right ) ? Left : Right ;
}
template < typename T , typename U = T >
constexpr auto Min ( const T & left , const U & right ) noexcept - > decltype ( ( left < right ) ? left : right )
{
return ( left < right ) ? left : right ;
}
template < typename T , T Left , T Right >
constexpr auto Min ( void ) noexcept - > decltype ( ( Left < Right ) ? Left : Right )
{
return ( Left < Right ) ? Left : Right ;
}
template < bool Condition , typename TTrue , typename TFalse >
struct Conditional ;