From 1cd1249a42b74681f01d89843f052111d58a703c Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 5 Jun 2021 18:04:38 +0100 Subject: [PATCH] EndianStream.h - add missing implicit MathExtras.h header dependency. NFCI. Noticed while investigating if we can remove an unnecessary MathExtras.h include from SmallVector.h --- include/llvm/Support/EndianStream.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/Support/EndianStream.h b/include/llvm/Support/EndianStream.h index 87898038d21..ed941c61fbe 100644 --- a/include/llvm/Support/EndianStream.h +++ b/include/llvm/Support/EndianStream.h @@ -16,6 +16,7 @@ #include "llvm/ADT/ArrayRef.h" #include "llvm/Support/Endian.h" +#include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" namespace llvm {