[llvm] c89735d - Remove dependence on <ciso646> (#73273)

via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 8 18:48:05 PST 2025


Author: Michael Kenzel
Date: 2025-02-08T18:48:01-08:00
New Revision: c89735d289f341985ca2ea74486b96bc611b3c64

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

LOG: Remove dependence on <ciso646> (#73273)

C++23 removed `<ciso646>` from the standard library. The header is used
in two places: Once in order to pull in standard library macros. Since
this file also includes `<optional>`, that use of `<ciso646>` is
technically redundant, but should probably be left in in case a future
change ever removes the include of `<optional>`. A second use of
`<ciso646>` appears to have been introduced in
da650094b187ee3c8017d74f63c885663faca1d8, but seems unnecessary (the
file doesn't seem to use anything from that header, and it seems to
build just fine on MSVC here without it). The new `<version>` header
should be supported by all supported implementations. This change
replaces uses of `<ciso646>` with the `<version>` header, or removes
them entirely where unnecessary.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Support/Threading.h b/llvm/include/llvm/Support/Threading.h
index 01e26ad9b858ea3..9972f4ad31dadb5 100644
--- a/llvm/include/llvm/Support/Threading.h
+++ b/llvm/include/llvm/Support/Threading.h
@@ -19,6 +19,7 @@
 #include "llvm/Config/llvm-config.h" // for LLVM_ON_UNIX
 #include "llvm/Support/Compiler.h"
 #include <optional>
+#include <version>
 
 #if defined(_MSC_VER)
 // MSVC's call_once implementation worked since VS 2015, which is the minimum


        


More information about the llvm-commits mailing list