What do these two strange lines of code mean?
thread_guard(thread_guard const&) = delete;
thread_guard& operator=(thread_guard const&) = delete;
|
What do these two strange lines of code mean?
|
||||
|
|
|
The The |
|||||
|
|
It is the new C++0x syntax for disabling the certain functions of the class. See wikipedia for an example. Here you are telling that class |
|||
|
|