[llvm] 0fc4016 - APInt.h - add missing <utility> header.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 11 05:35:40 PDT 2021
Author: Simon Pilgrim
Date: 2021-06-11T13:35:12+01:00
New Revision: 0fc4016d913d3ca2f490b1f1b132798ec0a13e00
URL: https://github.com/llvm/llvm-project/commit/0fc4016d913d3ca2f490b1f1b132798ec0a13e00
DIFF: https://github.com/llvm/llvm-project/commit/0fc4016d913d3ca2f490b1f1b132798ec0a13e00.diff
LOG: APInt.h - add missing <utility> header.
Some buildbots are complaining about std::move() after rG61cdaf66fe22be2b5942ddee4f46a998b4f3ee29
Added:
Modified:
llvm/include/llvm/ADT/APInt.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h
index 5b1db209caf5..9525157b698b 100644
--- a/llvm/include/llvm/ADT/APInt.h
+++ b/llvm/include/llvm/ADT/APInt.h
@@ -20,6 +20,7 @@
#include <cassert>
#include <climits>
#include <cstring>
+#include <utility>
namespace llvm {
class FoldingSetNodeID;
More information about the llvm-commits
mailing list