From b0104d512d0da4b329a452d6c085d74f223fcd12 Mon Sep 17 00:00:00 2001 From: zhuoli Date: Tue, 4 Jan 2022 22:18:15 +0800 Subject: [PATCH] Using default move ctor && copy ctor of ArrayValue Signed-off-by: zhuoli Change-Id: I5fde770aa64f16e1ac798455c456f53c73074411 --- 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