From e32d73ef5ee5b7376bd6b1b08ecf22bde04d919e Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 5 Jun 2021 18:02:52 +0100 Subject: [PATCH] NativeFormatting.cpp - add missing implicit MathExtras.h header dependency. NFCI. Noticed while investigating if we can remove an unnecessary MathExtras.h include from SmallVector.h --- llvm/lib/Support/NativeFormatting.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Support/NativeFormatting.cpp b/llvm/lib/Support/NativeFormatting.cpp index ae4bffb..ae9f037 100644 --- a/llvm/lib/Support/NativeFormatting.cpp +++ b/llvm/lib/Support/NativeFormatting.cpp @@ -11,6 +11,7 @@ #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Support/Format.h" +#include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" #include -- 2.7.4