Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 903fc87b authored by Marin Shalamanov's avatar Marin Shalamanov Committed by Android (Google) Code Review
Browse files

Merge "SF: Add operator<< to RefreshRate"

parents fbf6e5a1 65ce5513
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -91,6 +91,9 @@ public:
        bool operator==(const RefreshRate& other) const { return !(*this != other); }
        bool operator==(const RefreshRate& other) const { return !(*this != other); }


        std::string toString() const;
        std::string toString() const;
        friend std::ostream& operator<<(std::ostream& os, const RefreshRate& refreshRate) {
            return os << refreshRate.toString();
        }


    private:
    private:
        friend RefreshRateConfigs;
        friend RefreshRateConfigs;