[libcxx-commits] [libcxx] aa9f14a - [libc++][format] Fix a missing include in `<format>` tests. (#71252)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sun Nov 5 05:32:56 PST 2023
Author: Konstantin Varlamov
Date: 2023-11-05T08:32:51-05:00
New Revision: aa9f14a52d33f4785561a54cc5276b1c6cc354d8
URL: https://github.com/llvm/llvm-project/commit/aa9f14a52d33f4785561a54cc5276b1c6cc354d8
DIFF: https://github.com/llvm/llvm-project/commit/aa9f14a52d33f4785561a54cc5276b1c6cc354d8.diff
LOG: [libc++][format] Fix a missing include in `<format>` tests. (#71252)
Added:
Modified:
libcxx/test/support/format.functions.common.h
Removed:
################################################################################
diff --git a/libcxx/test/support/format.functions.common.h b/libcxx/test/support/format.functions.common.h
index 8345707057342f5..976df5b741fb9b0 100644
--- a/libcxx/test/support/format.functions.common.h
+++ b/libcxx/test/support/format.functions.common.h
@@ -12,8 +12,9 @@
#include <algorithm>
#include <cctype>
-#include <cstddef>
#include <charconv>
+#include <cstddef>
+#include <cstdlib>
#include <format>
#include <ranges>
#include <string>
More information about the libcxx-commits
mailing list