LibJS: Remove redundant AK_MAKE_NON{COPYABLE,MOVABLE} from Symbol class

These are already applied to the Cell base class.
This commit is contained in:
Linus Groh 2022-12-06 21:28:27 +00:00
parent f490ba13ff
commit 54abfcf835
Notes: sideshowbarker 2024-07-17 03:41:48 +09:00

View file

@ -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;