[libcxx-commits] [libcxx] 02e0b7d - [libc++] Add missing include in test (#84579)

via libcxx-commits libcxx-commits at lists.llvm.org
Mon Mar 11 06:52:04 PDT 2024


Author: Louis Dionne
Date: 2024-03-11T09:51:59-04:00
New Revision: 02e0b7d405c3ace86e731450c0dd73556f1452d9

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

LOG: [libc++] Add missing include in test (#84579)

That test is using std::toupper.

Added: 
    

Modified: 
    libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/formatter.floating_point.pass.cpp

Removed: 
    


################################################################################
diff  --git a/libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/formatter.floating_point.pass.cpp b/libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/formatter.floating_point.pass.cpp
index 206b0214cf5fd7..6c507881167f77 100644
--- a/libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/formatter.floating_point.pass.cpp
+++ b/libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/formatter.floating_point.pass.cpp
@@ -29,6 +29,7 @@
 #include <algorithm>
 #include <array>
 #include <cassert>
+#include <cctype>
 #include <cmath>
 #include <charconv>
 #include <concepts>


        


More information about the libcxx-commits mailing list