From 1f8168577b07d446db62268fddedf5a8fdd03a87 Mon Sep 17 00:00:00 2001 From: Myriad-Dreamin Date: Fri, 3 Apr 2026 22:04:17 +0800 Subject: [PATCH] wip --- include/Support/FileSystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Support/FileSystem.h b/include/Support/FileSystem.h index 009e71e0..c30b8113 100644 --- a/include/Support/FileSystem.h +++ b/include/Support/FileSystem.h @@ -149,7 +149,7 @@ inline std::string toPath(llvm::StringRef uri) { llvm::SmallString<128> result; if(auto err = fs::real_path(decoded, result)) { - std::println("Failed to get real path: {}, Input is {}\n", err.message(), decoded); + std::println(stderr, "Failed to get real path: {}, Input is {}\n", err.message(), decoded); std::abort(); }