[TypeSize] Fix module builds (cassert)

TypeSize.h uses `assert` statements without including
the <cassert> header first which leads to failures
in modular builds.

llvm-svn: 374138
This commit is contained in:
Kristina Brooks 2019-10-09 04:00:03 +00:00
parent 78153b3a97
commit 0746aafd89
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#ifndef LLVM_SUPPORT_TYPESIZE_H
#define LLVM_SUPPORT_TYPESIZE_H
#include <cassert>
#include <tuple>
namespace llvm {