This is an archive of the discontinued LLVM Phabricator instance.

Guard the noexcept with __cplusplus version.
ClosedPublic

Authored by logan on May 5 2014, 10:39 AM.

Details

Reviewers
mclow.lists
logan
Summary

To allow the compilation with gcc, we can't use the
has_feature(noexcept) to detect the existence of noexcept
keyword. We should use
cplusplus >= 201103L instead.

Diff Detail

Event Timeline

logan updated this revision to Diff 9081.May 5 2014, 10:39 AM
logan retitled this revision from to Guard the noexcept with __cplusplus version..
logan updated this object.
logan edited the test plan for this revision. (Show Details)
logan added a reviewer: mclow.lists.
logan added a subscriber: Unknown Object (MLST).
logan accepted this revision.May 9 2014, 5:50 PM
logan added a reviewer: logan.
This revision is now accepted and ready to land.May 9 2014, 5:50 PM
logan closed this revision.May 9 2014, 5:51 PM

Committed as rL208465.