[libc-commits] [libc] 0d05e55 - [libc] Correct include path for wchar_utils.h in libc/src/wchar/wcspbrk.cpp (#151059)
via libc-commits
libc-commits at lists.llvm.org
Mon Jul 28 18:14:18 PDT 2025
Author: Jin Huang
Date: 2025-07-28T21:14:14-04:00
New Revision: 0d05e55f69426c38f42f911a11ac540896577e06
URL: https://github.com/llvm/llvm-project/commit/0d05e55f69426c38f42f911a11ac540896577e06
DIFF: https://github.com/llvm/llvm-project/commit/0d05e55f69426c38f42f911a11ac540896577e06.diff
LOG: [libc] Correct include path for wchar_utils.h in libc/src/wchar/wcspbrk.cpp (#151059)
A previous change incorrectly included `wchar_util.h` using a broken
relative path. This change corrects the path to `#include
"src/wchar/wchar_utils.h"`.
Added:
Modified:
libc/src/wchar/wcspbrk.cpp
Removed:
################################################################################
diff --git a/libc/src/wchar/wcspbrk.cpp b/libc/src/wchar/wcspbrk.cpp
index 5d86a494bdf39..f329b73f9ee70 100644
--- a/libc/src/wchar/wcspbrk.cpp
+++ b/libc/src/wchar/wcspbrk.cpp
@@ -11,7 +11,7 @@
#include "hdr/types/wchar_t.h"
#include "src/__support/common.h"
#include "src/__support/macros/null_check.h"
-#include "wchar_utils.h"
+#include "src/wchar/wchar_utils.h"
namespace LIBC_NAMESPACE_DECL {
More information about the libc-commits
mailing list