mirror of
https://github.com/reactos/CMake.git
synced 2024-11-29 06:20:23 +00:00
7 lines
74 B
C++
7 lines
74 B
C++
|
|
struct A
|
|
{
|
|
A(const A&) = delete;
|
|
A& operator=(const A&) = delete;
|
|
};
|