diff options
| author | ilnurkh <[email protected]> | 2023-10-17 08:15:44 +0300 | 
|---|---|---|
| committer | ilnurkh <[email protected]> | 2023-10-17 09:00:07 +0300 | 
| commit | 784925324fd115c37bc98c5bbfe64c15f9966d74 (patch) | |
| tree | f763f6eaacfcd4757d249977aaddfa4e9b2a355b /library/cpp/malloc | |
| parent | d6c75d9ec33559b29eb61a8f2e17cbca30fd5ae2 (diff) | |
Y_FAIL->Y_ABORT at '^li'
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'library/cpp/malloc')
| -rw-r--r-- | library/cpp/malloc/nalf/alloc_helpers.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/malloc/nalf/alloc_helpers.h b/library/cpp/malloc/nalf/alloc_helpers.h index 0e3649d76a5..c98c05d9980 100644 --- a/library/cpp/malloc/nalf/alloc_helpers.h +++ b/library/cpp/malloc/nalf/alloc_helpers.h @@ -9,17 +9,17 @@ struct TNoHeapAlloc {      // implemented and available for gcc virtual destructors  protected:      void operator delete(void*) { -        Y_FAIL(); +        Y_ABORT();      }      void operator delete[](void*) { -        Y_FAIL(); +        Y_ABORT();      }      void operator delete(void*, const std::nothrow_t&) { -        Y_FAIL(); +        Y_ABORT();      }      void operator delete[](void*, const std::nothrow_t&) { -        Y_FAIL(); +        Y_ABORT();      }  };  | 
