mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
The main noticeable change is the SmallString conversion operator to std::string is now explicit instead of implicit.
23 lines
915 B
Diff
23 lines
915 B
Diff
From 3d09b3d7b78ffc037a32725cc4002976b908d965 Mon Sep 17 00:00:00 2001
|
|
From: PJ Reiniger <pj.reiniger@gmail.com>
|
|
Date: Sat, 7 May 2022 20:50:26 -0400
|
|
Subject: [PATCH 01/28] Fix spelling/language errors
|
|
|
|
---
|
|
llvm/include/llvm/Support/ErrorHandling.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/llvm/include/llvm/Support/ErrorHandling.h b/llvm/include/llvm/Support/ErrorHandling.h
|
|
index f980510d3..6791df6be 100644
|
|
--- a/llvm/include/llvm/Support/ErrorHandling.h
|
|
+++ b/llvm/include/llvm/Support/ErrorHandling.h
|
|
@@ -44,7 +44,7 @@ namespace llvm {
|
|
void install_fatal_error_handler(fatal_error_handler_t handler,
|
|
void *user_data = nullptr);
|
|
|
|
- /// Restores default error handling behaviour.
|
|
+ /// Restores default error handling behavior.
|
|
void remove_fatal_error_handler();
|
|
|
|
/// ScopedFatalErrorHandler - This is a simple helper class which just
|