summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-01-25 17:42:56 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-01-25 17:42:56 +0100
commit8d06606835e3d01f537ebe96de8b216e64a1f969 (patch)
tree5def38115e55b4b9b78a016e6fe9cfc2771d22a0 /src/utils
parentdadefbcd103bd11bc74ca35a40d18dd2c1877f70 (diff)
downloadmana-client-8d06606835e3d01f537ebe96de8b216e64a1f969.tar.gz
mana-client-8d06606835e3d01f537ebe96de8b216e64a1f969.tar.bz2
mana-client-8d06606835e3d01f537ebe96de8b216e64a1f969.tar.xz
mana-client-8d06606835e3d01f537ebe96de8b216e64a1f969.zip
Always use C++11 and remove related compatibility option/code
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/mutex.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/utils/mutex.h b/src/utils/mutex.h
index f7f26233..d0120cfa 100644
--- a/src/utils/mutex.h
+++ b/src/utils/mutex.h
@@ -53,9 +53,7 @@ class MutexLocker
{
public:
MutexLocker(Mutex *mutex);
-#ifdef ENABLE_CPP0X
MutexLocker(MutexLocker&&);
-#endif
~MutexLocker();
private:
@@ -95,13 +93,11 @@ inline MutexLocker::MutexLocker(Mutex *mutex):
mMutex->lock();
}
-#ifdef ENABLE_CPP0X
inline MutexLocker::MutexLocker(MutexLocker&& rhs):
mMutex(rhs.mMutex)
{
rhs.mMutex = NULL;
}
-#endif
inline MutexLocker::~MutexLocker()
{