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

Commit 089099c3 authored by Jim Shargo's avatar Jim Shargo
Browse files

libui/libui: Remove extraneous semicolons

This causes a build error when linking with AIDL for some reason.

no-op refactor

Bug: n/a
Flag: EXEMPT refactor
Test: n/a
Change-Id: I2a43d22d252c175fa797e65745edd20fab67962a
parent 70042c67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ public:
    // Public for testing.
    static nsecs_t snapToNextTick(
            nsecs_t timestamp, nsecs_t tickPhase, nsecs_t tickInterval);
    nsecs_t getReportedCompositeDeadline() const { return mCompositorTiming.deadline; };
    nsecs_t getReportedCompositeDeadline() const { return mCompositorTiming.deadline; }

    nsecs_t getNextCompositeDeadline(const nsecs_t now) const;
    nsecs_t getCompositeInterval() const { return mCompositorTiming.interval; }
+1 −1
Original line number Diff line number Diff line
@@ -867,6 +867,6 @@ class BnGraphicBufferProducer : public IGraphicBufferProducer {
#endif

// ----------------------------------------------------------------------------
}; // namespace android
} // namespace android

#endif // ANDROID_GUI_IGRAPHICBUFFERPRODUCER_H
+1 −1
Original line number Diff line number Diff line
@@ -156,6 +156,6 @@ private:
    base::unique_fd mFenceFd;
};

}; // namespace android
} // namespace android

#endif // ANDROID_FENCE_H
+1 −1
Original line number Diff line number Diff line
@@ -297,6 +297,6 @@ private:
            mDeathCallbacks;
};

}; // namespace android
} // namespace android

#endif // ANDROID_GRAPHIC_BUFFER_H
+1 −1
Original line number Diff line number Diff line
@@ -137,6 +137,6 @@ protected:
};

// ---------------------------------------------------------------------------
}; // namespace android
} // namespace android

#endif // ANDROID_BUFFER_ALLOCATOR_H
Loading