aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrAllocator.h
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2016-01-22 06:04:55 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-22 06:04:55 -0800
commit4c5cd7d527ed29aabfa72aa47b23a4496eeda357 (patch)
tree49959934e26882dd38d3bb1939f7c9b60d70f10d /src/gpu/GrAllocator.h
parent6d3cef930ad19b0f55543ca40f7a07030f4fe508 (diff)
Consolidate SK_CRASH and sk_throw into SK_ABORT
Diffstat (limited to 'src/gpu/GrAllocator.h')
-rw-r--r--src/gpu/GrAllocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrAllocator.h b/src/gpu/GrAllocator.h
index c5d2dc3d38..3305fb00c2 100644
--- a/src/gpu/GrAllocator.h
+++ b/src/gpu/GrAllocator.h
@@ -389,7 +389,7 @@ template <typename T> void* operator new(size_t size, GrTAllocator<T>* allocator
// to match the op new silences warnings about missing op delete when a constructor throws an
// exception.
template <typename T> void operator delete(void*, GrTAllocator<T>*) {
- SK_CRASH();
+ SK_ABORT("Invalid Operation");
}
#define GrNEW_APPEND_TO_ALLOCATOR(allocator_ptr, type_name, args) \