aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkVertices.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkVertices.cpp')
-rw-r--r--src/core/SkVertices.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/SkVertices.cpp b/src/core/SkVertices.cpp
index 7253109a82..900247d29b 100644
--- a/src/core/SkVertices.cpp
+++ b/src/core/SkVertices.cpp
@@ -235,3 +235,8 @@ sk_sp<SkVertices> SkVertices::Decode(const void* data, size_t length) {
}
return builder.detach();
}
+
+void SkVertices::operator delete(void* p)
+{
+ ::operator delete(p);
+}