summaryrefslogtreecommitdiffstats
path: root/core/os/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/os/mutex.h')
-rw-r--r--core/os/mutex.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/os/mutex.h b/core/os/mutex.h
index a4eab0cd86..3e7aa81bc1 100644
--- a/core/os/mutex.h
+++ b/core/os/mutex.h
@@ -45,10 +45,10 @@
#ifdef THREADS_ENABLED
-template <class MutexT>
+template <typename MutexT>
class MutexLock;
-template <class StdMutexT>
+template <typename StdMutexT>
class MutexImpl {
friend class MutexLock<MutexImpl<StdMutexT>>;
@@ -70,7 +70,7 @@ public:
}
};
-template <class MutexT>
+template <typename MutexT>
class MutexLock {
friend class ConditionVariable;
@@ -100,7 +100,7 @@ public:
bool try_lock() const { return true; }
};
-template <class MutexT>
+template <typename MutexT>
class MutexLock {
public:
MutexLock(const MutexT &p_mutex) {}