mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 01:22:12 +02:00
7 lines
123 B
C
7 lines
123 B
C
#pragma once
|
|
|
|
#define AK_MAKE_NONCOPYABLE(c) \
|
|
private: \
|
|
c(const c&) = delete; \
|
|
c& operator=(const c&) = delete;
|