Get rid of casts. (NFC)

Differential Revision: https://reviews.llvm.org/D53709

llvm-svn: 345278
This commit is contained in:
Adrian Prantl 2018-10-25 16:15:17 +00:00
parent 8fc7b5f922
commit 6d0b9047a7
2 changed files with 3 additions and 3 deletions

View File

@ -1402,10 +1402,10 @@ bool PlatformDarwin::SDKSupportsModules(SDKType desired_type,
if (last_path_component) {
const llvm::StringRef sdk_name = last_path_component.GetStringRef();
if (!sdk_name.startswith(sdk_strings[(int)desired_type]))
if (!sdk_name.startswith(sdk_strings[desired_type]))
return false;
auto version_part =
sdk_name.drop_front(strlen(sdk_strings[(int)desired_type]));
sdk_name.drop_front(strlen(sdk_strings[desired_type]));
version_part.consume_back(".sdk");
llvm::VersionTuple version;

View File

@ -85,7 +85,7 @@ public:
static std::tuple<llvm::VersionTuple, llvm::StringRef>
ParseVersionBuildDir(llvm::StringRef str);
enum class SDKType {
enum SDKType : unsigned {
MacOSX = 0,
iPhoneSimulator,
iPhoneOS,