From 0746aafd89754a2ae9992c4d6394e3b4f3623b1d Mon Sep 17 00:00:00 2001 From: Kristina Brooks Date: Wed, 9 Oct 2019 04:00:03 +0000 Subject: [PATCH] [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 --- llvm/include/llvm/Support/TypeSize.h | 1 + 1 file changed, 1 insertion(+) 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 { -- 2.7.4