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
786 B
Diff
23 lines
786 B
Diff
From 9951c4b3fea6b2dbe7141070444de8df6ae4ce9b Mon Sep 17 00:00:00 2001
|
|
From: PJ Reiniger <pj.reiniger@gmail.com>
|
|
Date: Wed, 4 May 2022 00:01:00 -0400
|
|
Subject: [PATCH 14/28] EpochTracker ABI macro
|
|
|
|
---
|
|
llvm/include/llvm/ADT/EpochTracker.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/llvm/include/llvm/ADT/EpochTracker.h b/llvm/include/llvm/ADT/EpochTracker.h
|
|
index b06888494..f35461d1c 100644
|
|
--- a/llvm/include/llvm/ADT/EpochTracker.h
|
|
+++ b/llvm/include/llvm/ADT/EpochTracker.h
|
|
@@ -22,7 +22,7 @@
|
|
|
|
namespace llvm {
|
|
|
|
-#if LLVM_ENABLE_ABI_BREAKING_CHECKS
|
|
+#ifndef NDEBUG //ifndef LLVM_ENABLE_ABI_BREAKING_CHECKS
|
|
|
|
/// A base class for data structure classes wishing to make iterators
|
|
/// ("handles") pointing into themselves fail-fast. When building without
|