[XRay] Fixup: remove 'noexcept' in defaulted move members

This is to appease stage1 builds using gcc.

Follow-up to D48370.

llvm-svn: 338826
This commit is contained in:
Dean Michael Berris 2018-08-03 07:41:34 +00:00
parent 13d04e766a
commit 1fa08d1132
1 changed files with 2 additions and 2 deletions

View File

@ -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;