[libcxx-commits] [libcxx] d82a0d2 - [libc++] Add missing <string> include (#208281)
via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jul 9 08:58:59 PDT 2026
Author: Louis Dionne
Date: 2026-07-09T11:58:54-04:00
New Revision: d82a0d29e1bb85304e54767763ef5c036cd5bc5b
URL: https://github.com/llvm/llvm-project/commit/d82a0d29e1bb85304e54767763ef5c036cd5bc5b
DIFF: https://github.com/llvm/llvm-project/commit/d82a0d29e1bb85304e54767763ef5c036cd5bc5b.diff
LOG: [libc++] Add missing <string> include (#208281)
Fixes #182390
Added:
Modified:
libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp
index 45b034833fecc..37b4a48912e09 100644
--- a/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp
+++ b/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp
@@ -16,10 +16,11 @@
// XFAIL: FROZEN-CXX03-HEADERS-FIXME
#include <locale>
-#include <ios>
#include <cassert>
+#include <ios>
#include <limits>
#include <streambuf>
+#include <string>
#include "test_macros.h"
#include "test_iterators.h"
More information about the libcxx-commits
mailing list