mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
6 lines
123 B
C
6 lines
123 B
C
#pragma once
|
|
|
|
#define AK_MAKE_NONCOPYABLE(c) \
|
|
private: \
|
|
c(const c&) = delete; \
|
|
c& operator=(const c&) = delete;
|