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;