From: Kristina Brooks Date: Wed, 9 Oct 2019 04:00:03 +0000 (+0000) Subject: [TypeSize] Fix module builds (cassert) X-Git-Tag: llvmorg-11-init~7129 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0746aafd89754a2ae9992c4d6394e3b4f3623b1d;p=platform%2Fupstream%2Fllvm.git [TypeSize] Fix module builds (cassert) TypeSize.h uses `assert` statements without including the header first which leads to failures in modular builds. llvm-svn: 374138 --- diff --git a/llvm/include/llvm/Support/TypeSize.h b/llvm/include/llvm/Support/TypeSize.h index d93919a..ea08358 100644 --- a/llvm/include/llvm/Support/TypeSize.h +++ b/llvm/include/llvm/Support/TypeSize.h @@ -15,6 +15,7 @@ #ifndef LLVM_SUPPORT_TYPESIZE_H #define LLVM_SUPPORT_TYPESIZE_H +#include #include namespace llvm {