mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-09 15:47:34 +02:00
Supress VS compiler warning C4512:
assignment operator could not be generated
This commit is contained in:
parent
1e1822f6c6
commit
b3ed2d94b5
@ -42,6 +42,10 @@ private:
|
|||||||
CRITICAL_SECTION _cs;
|
CRITICAL_SECTION _cs;
|
||||||
int _lockCount;
|
int _lockCount;
|
||||||
const bool _recursive;
|
const bool _recursive;
|
||||||
|
|
||||||
|
private:
|
||||||
|
MutexImpl(const MutexImpl&);
|
||||||
|
MutexImpl& operator = (const MutexImpl&);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,6 +42,10 @@ private:
|
|||||||
HANDLE _mutex;
|
HANDLE _mutex;
|
||||||
int _lockCount;
|
int _lockCount;
|
||||||
const bool _recursive;
|
const bool _recursive;
|
||||||
|
|
||||||
|
private:
|
||||||
|
MutexImpl(const MutexImpl&);
|
||||||
|
MutexImpl& operator = (const MutexImpl&);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user