summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-02-09 09:47:21 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-02-13 12:57:16 +0100
commitc70be70cab3615cb36cc5f244671cf5d39f1fda8 (patch)
treeb15e68552ffd6adda832a9ae5d38160ef8299d7f /src/utils
parent717eb07c0d51098e319059883b11ba6e2bf4cbb8 (diff)
downloadmana-c70be70cab3615cb36cc5f244671cf5d39f1fda8.tar.gz
mana-c70be70cab3615cb36cc5f244671cf5d39f1fda8.tar.bz2
mana-c70be70cab3615cb36cc5f244671cf5d39f1fda8.tar.xz
mana-c70be70cab3615cb36cc5f244671cf5d39f1fda8.zip
General code cleanups
* Removing unused includes * Use member initialization * Use range-based for loops * Use nullptr * Removed no longer used aliases * Use override * Don't use else after return * Use '= delete' to remove implicit members * Use std::string::empty instead of comparing to ""
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/mutex.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/utils/mutex.h b/src/utils/mutex.h
index ad95b17b..b4661c70 100644
--- a/src/utils/mutex.h
+++ b/src/utils/mutex.h
@@ -35,14 +35,14 @@ class Mutex
public:
Mutex();
~Mutex();
+ Mutex(Mutex&&) = delete; // prevent moving
+ Mutex(const Mutex&) = delete; // prevent copying
+ Mutex& operator=(const Mutex&) = delete;
void lock();
void unlock();
private:
- Mutex(const Mutex&); // prevent copying
- Mutex& operator=(const Mutex&);
-
SDL_mutex *mMutex;
};
@@ -54,12 +54,11 @@ class MutexLocker
public:
MutexLocker(Mutex *mutex);
MutexLocker(MutexLocker&&);
+ MutexLocker(const MutexLocker&) = delete; // prevent copying
+ MutexLocker& operator=(const MutexLocker&) = delete;
~MutexLocker();
private:
- MutexLocker(const MutexLocker&); // prevent copying
- MutexLocker& operator=(const MutexLocker&);
-
Mutex *mMutex;
};