forked from OSchip/llvm-project
[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:
parent
78153b3a97
commit
0746aafd89
|
@ -15,6 +15,7 @@
|
|||
#ifndef LLVM_SUPPORT_TYPESIZE_H
|
||||
#define LLVM_SUPPORT_TYPESIZE_H
|
||||
|
||||
#include <cassert>
|
||||
#include <tuple>
|
||||
|
||||
namespace llvm {
|
||||
|
|
Loading…
Reference in New Issue