mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: PJ Reiniger <pj.reiniger@gmail.com>
|
|
Date: Sun, 8 May 2022 16:49:36 -0400
|
|
Subject: [PATCH 18/33] raw_ostream: prefer wpi's fs.h
|
|
|
|
---
|
|
llvm/include/llvm/Support/raw_ostream.h | 7 ++-----
|
|
1 file changed, 2 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/llvm/include/llvm/Support/raw_ostream.h b/llvm/include/llvm/Support/raw_ostream.h
|
|
index 991ede221d8c265a384ede4d4b037dbbb61d6afd..bd1a260835b874bfbe4177cf92094d3507157c82 100644
|
|
--- a/llvm/include/llvm/Support/raw_ostream.h
|
|
+++ b/llvm/include/llvm/Support/raw_ostream.h
|
|
@@ -27,18 +27,15 @@
|
|
#include <type_traits>
|
|
#include <vector>
|
|
|
|
-namespace llvm {
|
|
-
|
|
-template <class T> class [[nodiscard]] Expected;
|
|
|
|
-namespace sys {
|
|
namespace fs {
|
|
enum FileAccess : unsigned;
|
|
enum OpenFlags : unsigned;
|
|
enum CreationDisposition : unsigned;
|
|
class FileLocker;
|
|
} // end namespace fs
|
|
-} // end namespace sys
|
|
+
|
|
+namespace llvm {
|
|
|
|
/// This class implements an extremely fast bulk output stream that can *only*
|
|
/// output to a stream. It does not support seeking, reopening, rewinding, line
|