Remove old definition of the macro RTC_NOTREACHED

Bug: webrtc:9065
Change-Id: I3cb166f217893808af5708ede69abaebb5bde28e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/237809
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#35356}
This commit is contained in:
Artem Titov 2021-11-16 12:37:23 +01:00 committed by WebRTC LUCI CQ
parent c09b14c3c5
commit 3395107778

View File

@ -445,8 +445,6 @@ RTC_NORETURN RTC_EXPORT void UnreachableCodeReached();
#define RTC_UNREACHABLE_CODE_HIT false
#define RTC_DCHECK_NOTREACHED() RTC_DCHECK(RTC_UNREACHABLE_CODE_HIT)
// Deprecated. Use RTC_DCHECK_NOTREACHED instead
#define RTC_NOTREACHED() RTC_DCHECK(RTC_UNREACHABLE_CODE_HIT)
// Kills the process with an error message. Never returns. Use when you wish to
// assert that a point in the code is never reached.