This is an archive of the discontinued LLVM Phabricator instance.

Remove impossible _MSC_VER check
ClosedPublic

Authored by rnk on Apr 19 2018, 11:39 AM.

Details

Summary

It is immediately preceded by this check:

#if _MSC_VER < 1900
#error "MSVC versions prior to Visual Studio 2015 are not supported"
#endif

Diff Detail

Repository
rL LLVM

Event Timeline

rnk created this revision.Apr 19 2018, 11:39 AM
smeenai accepted this revision.Apr 19 2018, 12:38 PM
smeenai added a subscriber: smeenai.

LGTM. I'd tried to clean all stale _MSC_VER conditionals in the past, but I must have missed some.

This revision is now accepted and ready to land.Apr 19 2018, 12:38 PM
This revision was automatically updated to reflect the committed changes.