Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/FixedPointsArduino/commit/4d3f82c3ca89b27eaca8bbd9aef6ea59cea023b4?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
src/FixedPoints/SFixed.h
src/FixedPoints/UFixed.h
@ -41,7 +41,7 @@ public:
constexpr const static uintmax_t LogicalSize = IntegerSize + FractionSize ;
constexpr const static uintmax_t LogicalSize = IntegerSize + FractionSize ;
constexpr const static uintmax_t InternalSize = FIXED_POINTS_DETAILS : : BitSize < InternalType > : : Value ;
constexpr const static uintmax_t InternalSize = FIXED_POINTS_DETAILS : : BitSize < InternalType > : : Value ;
constexpr const static uintmax_t Scale = 1ULL < < FractionSize ;
constexpr const static uintmax_t Scale = UINTMAX_C ( 1 ) < < FractionSize ;
public :
public :
constexpr const static ShiftType IntegerShift = FractionSize ;
constexpr const static ShiftType IntegerShift = FractionSize ;
@ -41,7 +41,7 @@ public:
constexpr const static uintmax_t LogicalSize = IntegerSize + FractionSize ;
constexpr const static uintmax_t LogicalSize = IntegerSize + FractionSize ;
constexpr const static uintmax_t InternalSize = FIXED_POINTS_DETAILS : : BitSize < InternalType > : : Value ;
constexpr const static uintmax_t InternalSize = FIXED_POINTS_DETAILS : : BitSize < InternalType > : : Value ;
constexpr const static uintmax_t Scale = 1ULL < < FractionSize ;
constexpr const static uintmax_t Scale = UINTMAX_C ( 1 ) < < FractionSize ;
public :
public :
constexpr const static ShiftType IntegerShift = FractionSize ;
constexpr const static ShiftType IntegerShift = FractionSize ;