Remove unnecessary friend declarations

These functions do not access any private functions they do not need to be `friend`ed
This commit is contained in:
ZXShady 2024-10-05 15:11:38 +01:00 committed by Chris Thrasher
parent 26eb6348e5
commit eeef7f9e02

View File

@ -110,10 +110,6 @@ public:
static const Time Zero; //!< Predefined "zero" time value
private:
friend constexpr Time seconds(float);
friend constexpr Time milliseconds(std::int32_t);
friend constexpr Time microseconds(std::int64_t);
////////////////////////////////////////////////////////////
// Member data
////////////////////////////////////////////////////////////