[libcxx-commits] [libcxx] 78f17b2 - [libc++][format] Fix a missing include in tests.

Konstantin Varlamov via libcxx-commits libcxx-commits at lists.llvm.org
Thu Feb 2 23:56:54 PST 2023


Author: Konstantin Varlamov
Date: 2023-02-02T23:54:22-08:00
New Revision: 78f17b2a98e9c7ce4a28c48955ef312157099a69

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

LOG: [libc++][format] Fix a missing include in tests.

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 769b1aff9c642..81ed04998a510 100644
--- a/libcxx/test/support/format.functions.common.h
+++ b/libcxx/test/support/format.functions.common.h
@@ -11,6 +11,7 @@
 // Contains the common part of the formatter tests for 
diff erent papers.
 
 #include <algorithm>
+#include <cctype>
 #include <charconv>
 #include <format>
 #include <ranges>


        


More information about the libcxx-commits mailing list