forked from OSchip/llvm-project
[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:
parent
13d04e766a
commit
1fa08d1132
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue