소스 검색

LibJS: Move the "other" optional completion in the move constructor

Otherwise, we invoke a non-trival copy. Caught by clangd.
Timothy Flynn 2 년 전
부모
커밋
ba97f6a0d3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Userland/Libraries/LibJS/Runtime/Completion.h

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Completion.h

@@ -140,7 +140,7 @@ public:
     }
 
     Optional(Optional&& other)
-        : m_value(other.m_value)
+        : m_value(move(other.m_value))
     {
     }