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

Commit 9801575a authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am 908c8ff5: Merge "Fixed clang build error for libgui"

* commit '908c8ff5':
  Fixed clang build error for libgui
parents 21938749 908c8ff5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -65,9 +65,9 @@ private:
 */

#define ANDROID_SINGLETON_STATIC_INSTANCE(TYPE)                 \
    template class Singleton< TYPE >;                           \
    template<> Mutex Singleton< TYPE >::sLock(Mutex::PRIVATE);  \
    template<> TYPE* Singleton< TYPE >::sInstance(0);
    template<> TYPE* Singleton< TYPE >::sInstance(0);           \
    template class Singleton< TYPE >;


// ---------------------------------------------------------------------------