Fix typo in static_assert message. NFC

llvm-svn: 300179
This commit is contained in:
Craig Topper 2017-04-13 07:31:52 +00:00
parent 12294f8d2e
commit 9bd2d55825
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ public:
protected:
Metadata(unsigned ID, StorageType Storage)
: SubclassID(ID), Storage(Storage), SubclassData16(0), SubclassData32(0) {
static_assert(sizeof(*this) == 8, "Metdata fields poorly packed");
static_assert(sizeof(*this) == 8, "Metadata fields poorly packed");
}
~Metadata() = default;