[libcxx-commits] [libcxx] f471b49 - [NFC][libc++] Removes no longer existing define.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Aug 19 05:07:31 PDT 2023
Author: Mark de Wever
Date: 2023-08-19T14:06:42+02:00
New Revision: f471b4975f49e3b1eb3bee21aca1214f248c056e
URL: https://github.com/llvm/llvm-project/commit/f471b4975f49e3b1eb3bee21aca1214f248c056e
DIFF: https://github.com/llvm/llvm-project/commit/f471b4975f49e3b1eb3bee21aca1214f248c056e.diff
LOG: [NFC][libc++] Removes no longer existing define.
_LIBCPP_HAS_NO_INCOMPLETE_FORMAT has been removed from libc++ for a
while now.
Added:
Modified:
libcxx/modules/std/chrono.inc
Removed:
################################################################################
diff --git a/libcxx/modules/std/chrono.inc b/libcxx/modules/std/chrono.inc
index 8ed0b00684e59d..ca89d46cf30a9d 100644
--- a/libcxx/modules/std/chrono.inc
+++ b/libcxx/modules/std/chrono.inc
@@ -51,7 +51,7 @@ export namespace std {
using std::chrono::round;
// [time.duration.io], duration I/O
-#if !defined(_LIBCPP_HAS_NO_INCOMPLETE_FORMAT) && !defined(_LIBCPP_HAS_NO_LOCALIZATION)
+#ifndef _LIBCPP_HAS_NO_LOCALIZATION
using std::chrono::operator<<;
#endif
// using std::chrono::from_stream;
More information about the libcxx-commits
mailing list