From 54abfcf835eb168eddbc4dd1395b3e8a6f688fe6 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 6 Dec 2022 21:28:27 +0000 Subject: [PATCH] LibJS: Remove redundant AK_MAKE_NON{COPYABLE,MOVABLE} from Symbol class These are already applied to the Cell base class. --- Userland/Libraries/LibJS/Runtime/Symbol.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibJS/Runtime/Symbol.h b/Userland/Libraries/LibJS/Runtime/Symbol.h index f8fbb99247..4dd99bd619 100644 --- a/Userland/Libraries/LibJS/Runtime/Symbol.h +++ b/Userland/Libraries/LibJS/Runtime/Symbol.h @@ -14,8 +14,6 @@ namespace JS { class Symbol final : public Cell { JS_CELL(Symbol, Cell); - AK_MAKE_NONCOPYABLE(Symbol); - AK_MAKE_NONMOVABLE(Symbol); public: virtual ~Symbol() = default;