[llvm] e35d50b - [ADT] APInt.cpp - remove <cstring> duplicate. NFC.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 23 04:44:40 PDT 2022


Author: Simon Pilgrim
Date: 2022-10-23T12:44:20+01:00
New Revision: e35d50b7f2938a274ec591c3ba34fcffd3613f11

URL: https://github.com/llvm/llvm-project/commit/e35d50b7f2938a274ec591c3ba34fcffd3613f11
DIFF: https://github.com/llvm/llvm-project/commit/e35d50b7f2938a274ec591c3ba34fcffd3613f11.diff

LOG: [ADT] APInt.cpp - remove <cstring> duplicate. NFC.

This is already included in APInt.h

Added: 
    

Modified: 
    llvm/lib/Support/APInt.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp
index f74178b1ba4e1..399b96c68da3a 100644
--- a/llvm/lib/Support/APInt.cpp
+++ b/llvm/lib/Support/APInt.cpp
@@ -25,7 +25,7 @@
 #include "llvm/Support/MathExtras.h"
 #include "llvm/Support/raw_ostream.h"
 #include <cmath>
-#include <cstring>
+
 using namespace llvm;
 
 #define DEBUG_TYPE "apint"


        


More information about the llvm-commits mailing list