[llvm] b077c25 - Add missing cstdint include not found on Windows

Reid Kleckner via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 17:24:59 PST 2020


Author: Reid Kleckner
Date: 2020-02-27T17:24:50-08:00
New Revision: b077c25108bd4f75a44fc6a9dca90288140c5436

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

LOG: Add missing cstdint include not found on Windows

Added: 
    

Modified: 
    llvm/include/llvm/Support/MathExtras.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Support/MathExtras.h b/llvm/include/llvm/Support/MathExtras.h
index f07d0b7d9f7e..78afb3bc1109 100644
--- a/llvm/include/llvm/Support/MathExtras.h
+++ b/llvm/include/llvm/Support/MathExtras.h
@@ -18,6 +18,7 @@
 #include <cassert>
 #include <climits>
 #include <cmath>
+#include <cstdint>
 #include <cstring>
 #include <limits>
 #include <type_traits>


        


More information about the llvm-commits mailing list