aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/core/SkTArray.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkTArray.h b/include/core/SkTArray.h
index a8d5e48aa6..b5ecdc98b1 100644
--- a/include/core/SkTArray.h
+++ b/include/core/SkTArray.h
@@ -456,7 +456,7 @@ void* operator new(size_t, SkTArray<T, MEM_COPY>* array, int atIndex) {
// Skia doesn't use C++ exceptions but it may be compiled with them enabled. Having an op delete
// to match the op new silences warnings about missing op delete when a constructor throws an
// exception.
-template <typename T, bool MEM_COPY>
+template <typename T, bool MEM_COPY>
void operator delete(void*, SkTArray<T, MEM_COPY>* array, int atIndex) {
SK_CRASH();
}