1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

APInt.h - add missing <utility> header.

Some buildbots are complaining about std::move() after rG61cdaf66fe22be2b5942ddee4f46a998b4f3ee29
This commit is contained in:
Simon Pilgrim 2021-06-11 13:34:02 +01:00
parent 165132af1b
commit b871c5c8a1

View File

@ -20,6 +20,7 @@
#include <cassert>
#include <climits>
#include <cstring>
#include <utility>
namespace llvm {
class FoldingSetNodeID;