diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2021-06-05 18:03:37 +0100 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2021-06-05 18:05:40 +0100 |
commit | 24b9bc84982f47c6a62dccad1d0dd6bd7b023176 (patch) | |
tree | 28cd43290ed196a29ea1be60ecbd52541bc3ede2 /llvm/lib/BinaryFormat/MsgPackReader.cpp | |
parent | e32d73ef5ee5b7376bd6b1b08ecf22bde04d919e (diff) | |
download | llvm-24b9bc84982f47c6a62dccad1d0dd6bd7b023176.zip llvm-24b9bc84982f47c6a62dccad1d0dd6bd7b023176.tar.gz llvm-24b9bc84982f47c6a62dccad1d0dd6bd7b023176.tar.bz2 |
MsgPackReader.cpp - add missing implicit MathExtras.h header dependency. NFCI.
Noticed while investigating if we can remove an unnecessary MathExtras.h include from SmallVector.h
Diffstat (limited to 'llvm/lib/BinaryFormat/MsgPackReader.cpp')
-rw-r--r-- | llvm/lib/BinaryFormat/MsgPackReader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/BinaryFormat/MsgPackReader.cpp b/llvm/lib/BinaryFormat/MsgPackReader.cpp index 872a6e0..146edaa 100644 --- a/llvm/lib/BinaryFormat/MsgPackReader.cpp +++ b/llvm/lib/BinaryFormat/MsgPackReader.cpp @@ -14,6 +14,7 @@ #include "llvm/BinaryFormat/MsgPackReader.h" #include "llvm/BinaryFormat/MsgPack.h" #include "llvm/Support/Endian.h" +#include "llvm/Support/MathExtras.h" using namespace llvm; using namespace llvm::support; |