From f8710f0ba540a46f81e731c7260140510336a356 Mon Sep 17 00:00:00 2001 From: Zoey Riordan Date: Wed, 19 Feb 2020 10:21:01 -0800 Subject: [PATCH] correct "rule of five" in UiaTextRangeBase --- src/types/UiaTextRangeBase.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/UiaTextRangeBase.hpp b/src/types/UiaTextRangeBase.hpp index 9f3ed8489da..849b6b96964 100644 --- a/src/types/UiaTextRangeBase.hpp +++ b/src/types/UiaTextRangeBase.hpp @@ -80,6 +80,7 @@ namespace Microsoft::Console::Types virtual HRESULT RuntimeClassInitialize(const UiaTextRangeBase& a) noexcept; + UiaTextRangeBase(const UiaTextRangeBase&) = default; UiaTextRangeBase(UiaTextRangeBase&&) = default; UiaTextRangeBase& operator=(const UiaTextRangeBase&) = default; UiaTextRangeBase& operator=(UiaTextRangeBase&&) = default;