summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-12-06 21:28:27 +0000
committerLinus Groh <mail@linusgroh.de>2022-12-07 09:58:59 +0000
commit54abfcf835eb168eddbc4dd1395b3e8a6f688fe6 (patch)
treeba661f0b0e7eac1568a68cbe0f87665382fae42e /Userland/Libraries/LibJS
parentf490ba13ff986a39bc2544c75bfd6337a36ff8f9 (diff)
downloadserenity-54abfcf835eb168eddbc4dd1395b3e8a6f688fe6.zip
LibJS: Remove redundant AK_MAKE_NON{COPYABLE,MOVABLE} from Symbol class
These are already applied to the Cell base class.
Diffstat (limited to 'Userland/Libraries/LibJS')
-rw-r--r--Userland/Libraries/LibJS/Runtime/Symbol.h2
1 files changed, 0 insertions, 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;