diff options
Diffstat (limited to 'libs/hwui/thread/Signal.h')
-rw-r--r-- | libs/hwui/thread/Signal.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libs/hwui/thread/Signal.h b/libs/hwui/thread/Signal.h index 93e6f4c27535..ffcd4b675a85 100644 --- a/libs/hwui/thread/Signal.h +++ b/libs/hwui/thread/Signal.h @@ -26,8 +26,9 @@ namespace uirenderer { class Signal { public: - explicit Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) : mType(type), mSignaled(false) { } - ~Signal() { } + explicit Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL) + : mType(type), mSignaled(false) {} + ~Signal() {} void signal() { { @@ -52,7 +53,7 @@ private: mutable Condition mCondition; }; -}; // namespace uirenderer -}; // namespace android +}; // namespace uirenderer +}; // namespace android -#endif // ANDROID_HWUI_SIGNAL_H +#endif // ANDROID_HWUI_SIGNAL_H |