mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-05 14:10:49 +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;
|
||||
int _lockCount;
|
||||
const bool _recursive;
|
||||
|
||||
private:
|
||||
MutexImpl(const MutexImpl&);
|
||||
MutexImpl& operator = (const MutexImpl&);
|
||||
};
|
||||
|
||||
|
||||
|
@ -42,6 +42,10 @@ private:
|
||||
HANDLE _mutex;
|
||||
int _lockCount;
|
||||
const bool _recursive;
|
||||
|
||||
private:
|
||||
MutexImpl(const MutexImpl&);
|
||||
MutexImpl& operator = (const MutexImpl&);
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user