From 1fa08d113249c9ef24485ef06c1d6bdc8cbcf440 Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Fri, 3 Aug 2018 07:41:34 +0000 Subject: [PATCH] [XRay] Fixup: remove 'noexcept' in defaulted move members This is to appease stage1 builds using gcc. Follow-up to D48370. llvm-svn: 338826 --- llvm/include/llvm/XRay/Profile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/XRay/Profile.h b/llvm/include/llvm/XRay/Profile.h index f69cb97f7bbd..5cb4c14b56ab 100644 --- a/llvm/include/llvm/XRay/Profile.h +++ b/llvm/include/llvm/XRay/Profile.h @@ -85,8 +85,8 @@ public: Profile() = default; ~Profile() = default; - Profile(Profile &&) noexcept = default; - Profile &operator=(Profile &&) noexcept = default; + Profile(Profile &&) = default; + Profile &operator=(Profile &&) = default; // Disable copy construction and assignment. Profile(const Profile &) = delete;