Fix #elif in crrev.com/c/1949846

I was editing the patch in gerrit and looks like it undone !defined
change and I landed wrong version.

Bug: chromium:1030261
Change-Id: Ib645839bac5450fe55ecd9f3a38155022b7f6c13
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/1951624
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Vitaly Buka <vitalybuka@chromium.org>
This commit is contained in:
Vitaly Buka 2019-12-04 13:32:09 -08:00 committed by Commit Bot
parent 9a312ddff5
commit e01fb92aa9

View File

@ -213,7 +213,7 @@ class SimulateDelegate : public ExceptionHandlerServer::Delegate {
// ASan instrumentation inserts more instructions between the expected
// location and what's reported. https://crbug.com/845011.
constexpr uint64_t kAllowedOffset = 500;
#elif !NDEBUG
#elif !defined(NDEBUG)
// Debug build is likely not optimized and contains more instructions.
constexpr uint64_t kAllowedOffset = 150;
#else