[NFC] Fix build failure with GCC 11 in C++20 mode

This was already fixed in
2ccf0b76bc
but then regressed in
79a1f3e7c6

Reviewed By: aeubanks

Differential Revision: https://reviews.llvm.org/D123589
This commit is contained in:
Evgeny Mandrikov 2022-04-13 09:42:29 -07:00 committed by Arthur Eubanks
parent aa9da11f5d
commit 443b6ec169
1 changed files with 1 additions and 1 deletions

View File

@ -465,7 +465,7 @@ bool isInteresting(Any IR, StringRef PassID) {
} // namespace
template <typename T> ChangeReporter<T>::~ChangeReporter<T>() {
template <typename T> ChangeReporter<T>::~ChangeReporter() {
assert(BeforeStack.empty() && "Problem with Change Printer stack.");
}