rustc: Add missing lint registration

The pluggable lint changes apparently dropped the fat pointer transmute
lint by accident.

This commit registers the lint.
This commit is contained in:
Aaron Turon 2014-10-14 13:36:19 -07:00
parent aabb6e72c1
commit d6eb719729
1 changed files with 2 additions and 1 deletions

View File

@ -1623,7 +1623,8 @@ impl LintPass for HardwiredLints {
WARNINGS,
UNKNOWN_FEATURES,
UNKNOWN_CRATE_TYPES,
VARIANT_SIZE_DIFFERENCES
VARIANT_SIZE_DIFFERENCES,
FAT_PTR_TRANSMUTES
)
}
}