From 7eea716d658211ea039c1394fdd06519066cb439 Mon Sep 17 00:00:00 2001 From: ctw Date: Tue, 28 Sep 2021 16:51:12 +0800 Subject: [PATCH] Using default move ctor && copy ctor of ArrayValue Signed-off-by: ctw Change-Id: Ic0e746c7d8b2e5cf7bb19c3e4317e856d00bc196 --- assembler/annotation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assembler/annotation.h b/assembler/annotation.h index d4c23a7392..ccf1361886 100644 --- a/assembler/annotation.h +++ b/assembler/annotation.h @@ -511,8 +511,8 @@ public: { } - NO_MOVE_SEMANTIC(ArrayValue); - NO_COPY_SEMANTIC(ArrayValue); + DEFAULT_MOVE_SEMANTIC(ArrayValue); + DEFAULT_COPY_SEMANTIC(ArrayValue); ~ArrayValue() override = default; -- Gitee