1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:47:35 +00:00

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

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;